diff --git a/src/app/page.tsx b/src/app/page.tsx index 530ab4f..ecfc0e3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,30 +38,30 @@ export default function LandingPage() {
@@ -69,23 +69,23 @@ export default function LandingPage() {
@@ -93,14 +93,12 @@ export default function LandingPage() {
@@ -123,20 +121,21 @@ export default function LandingPage() { columns={[ { title: "Company", items: [ - { label: "About", href: "#about" }, - { label: "Projects", href: "#features" }, + { label: "About Us", href: "#about" }, + { label: "Our Work", href: "#features" }, { label: "Contact", href: "#contact" } ] }, { title: "Services", items: [ - { label: "Kitchens", href: "#" }, - { label: "Closets", href: "#" }, - { label: "Custom Millwork", href: "#" } + { label: "Kitchens", href: "#features" }, + { label: "Closets", href: "#features" }, + { label: "Custom Woodwork", href: "#features" } ] } ]} logoText="Miami Millwork Co." + copyrightText="© 2025 Miami Millwork Co. | Crafting Local Excellence" />
diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..647f3d0 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,71 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function PortfolioPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}