{children}
diff --git a/app/user/[slug]/page.js b/app/user/[slug]/page.js
new file mode 100644
index 0000000..13e2b01
--- /dev/null
+++ b/app/user/[slug]/page.js
@@ -0,0 +1,14 @@
+export default function Page({ params, searchParams }: {
+ // /blog/hello-world => { params: { slug: 'hello-world' } }
+ // /blog/hello-world?id=123 => { searchParams: { id: '123' } }
+ params: { slug: string },
+ searchParams: { id: string },
+}) {
+ return (
+
+
+ );
+}
\ No newline at end of file
{params.slug}
+{searchParams.id}
+{searchParams.justin}
+