diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 75d8242..cd9669c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import FeatureBento from "@/components/sections/feature/FeatureBento"; -import FaqBase from "@/components/sections/faq/FaqBase"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterCard from "@/components/sections/footer/FooterCard"; import { Mail, Phone, MapPin, Clock, Instagram, Facebook, Twitter } from "lucide-react"; const navItems = [ { name: "Shop", id: "/products" }, - { name: "About Us", id: "/about" }, + { name: "About", id: "/about" }, { name: "Subscription", id: "/subscription" }, { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" }, @@ -19,24 +19,23 @@ const navItems = [ export default function ContactPage() { return ( {/* Navigation */} @@ -79,38 +78,28 @@ export default function ContactPage() { {/* FAQ Section */}
-
@@ -123,23 +112,19 @@ export default function ContactPage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com/fincadonmanuel", ariaLabel: "Follow us on Instagram" - }, + href: "https://instagram.com/fincadonmanuel", ariaLabel: "Follow us on Instagram"}, { icon: Facebook, - href: "https://facebook.com/fincadonmanuel", ariaLabel: "Follow us on Facebook" - }, + href: "https://facebook.com/fincadonmanuel", ariaLabel: "Follow us on Facebook"}, { icon: Twitter, - href: "https://twitter.com/fincadonmanuel", ariaLabel: "Follow us on Twitter" - }, + href: "https://twitter.com/fincadonmanuel", ariaLabel: "Follow us on Twitter"}, { icon: Mail, - href: "mailto:hello@fincadonmanuel.com", ariaLabel: "Email us" - }, + href: "mailto:hello@fincadonmanuel.com", ariaLabel: "Email us"}, ]} />
); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index afa070d..e1a576c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,21 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Finca Don Manuel - Premium Specialty Coffee Delivered Fresh", - description: "Experience exceptional coffee sourced directly from our sustainable farm. Farm-to-cup freshness with whole bean and ground options, flexible subscriptions, and direct delivery. Ethically grown, expertly roasted.", - keywords: "specialty coffee, whole bean coffee, premium coffee, coffee subscription, direct trade coffee, sustainable coffee, artisan roasted coffee, farm to cup", - metadataBase: new URL("https://fincadonmanuel.com"), - alternates: { - canonical: "https://fincadonmanuel.com", - }, - openGraph: { - title: "Finca Don Manuel - Premium Specialty Coffee", - description: "Direct-to-consumer coffee subscription. Farm-to-cup excellence with ethical practices and exceptional flavor.", - url: "https://fincadonmanuel.com", - siteName: "Finca Don Manuel", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/serene-morning-coffee-plantation_23-2152031666.jpg", - alt: "Finca Don Manuel coffee farm", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Finca Don Manuel - Premium Specialty Coffee", - description: "Exceptional coffee sourced directly from our sustainable farm. Fresh delivery subscription available.", - images: ["http://img.b2bpic.net/free-photo/serene-morning-coffee-plantation_23-2152031666.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Finca Don Manuel - Premium Specialty Coffee", description: "Experience the finest specialty coffee from our Central American farm. Direct-to-consumer ordering with sustainable farming practices."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +