This commit is contained in:
2024-11-22 10:01:33 -05:00
parent 92611e5502
commit 7bd701dc04
13 changed files with 322 additions and 182 deletions

10
src/app/Builder/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
// app/builder/page.js
export default function BuilderPage() {
return (
<div>
<h1>About Us</h1>
<p>This is the about page.</p>
</div>
);
}

View File

@@ -1,9 +0,0 @@
export default async function BuilderPage() {
return (
<div className="bg-gray-100 min-h-screen flex flex-col">
<h1>Build Your Dream Rifle</h1>
</div>
);
}