diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e08e9e9..e4193dc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,7 +10,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Coffee, Sun, Users, Leaf, Armchair } from "lucide-react"; export default function AboutPage() { - const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"}]; + const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"},{"name":"Shop","id":"/shop"}]; const footerColumns = [{"items":[{"label":"Home","href":"/"},{"label":"Menu","href":"/menu"},{"label":"About","href":"/about"},{"label":"Order Ahead","href":"/order"}]},{"items":[{"label":"Hours","href":"/about"},{"label":"Instagram","href":"https://instagram.com/midnightcafe"}]}]; return ( diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 66f228a..cee02d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,39 +4,26 @@ import { Inter } from "next/font/google"; import "./globals.css"; const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", - description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", - robots: { + title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", robots: { index: true, follow: true, }, openGraph: { - title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", - description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", - url: "https://midnightcafe.com", - siteName: "Midnight Cafe", - images: [ + title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", url: "https://midnightcafe.com", siteName: "Midnight Cafe", images: [ { - url: "https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg", - alt: "Slow motion espresso pour in a cafe", - }, + url: "https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg", alt: "Slow motion espresso pour in a cafe"}, ], }, twitter: { - card: "summary_large_image", - title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", - description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", - images: ["https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg"], + card: "summary_large_image", title: "Midnight Cafe | Iowa City's Elevated Coffee Experience", description: "Midnight Cafe is Iowa City's premier destination for luxury craft coffee, natural light, and a vibrant local community. Experience perfected pours and a welcoming ambiance.", images: ["https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg"], }, }; diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 993f2fa..d204a89 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -7,7 +7,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function MenuPage() { - const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"}]; + const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"},{"name":"Shop","id":"/shop"}]; const footerColumns = [{"items":[{"label":"Home","href":"/"},{"label":"Menu","href":"/menu"},{"label":"About","href":"/about"},{"label":"Order Ahead","href":"/order"}]},{"items":[{"label":"Hours","href":"/about"},{"label":"Instagram","href":"https://instagram.com/midnightcafe"}]}]; return ( @@ -37,7 +37,7 @@ export default function MenuPage() { products={[ { id: "e1", name: "Classic Latte", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/hot-cup-hot-chocolate_140725-7519.jpg", imageAlt: "A classic latte with art" }, { id: "e2", name: "Rich Americano", price: "$3.75", imageSrc: "https://img.b2bpic.net/free-photo/top-view-tasty-espresso-served-cup-with-coffee_24972-2324.jpg", imageAlt: "A rich Americano coffee" }, - { id: "e3", name: "Velvet Cappuccino", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg?_wi=2", imageAlt: "A velvety cappuccino" } + { id: "e3", name: "Velvet Cappuccino", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg", imageAlt: "A velvety cappuccino" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index cbe9f0c..1da16d3 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -10,7 +10,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Clock, Star, Gift, BookOpen, ShoppingCart, Coffee } from "lucide-react"; export default function OrderPage() { - const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"}]; + const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"},{"name":"Shop","id":"/shop"}]; const footerColumns = [{"items":[{"label":"Home","href":"/"},{"label":"Menu","href":"/menu"},{"label":"About","href":"/about"},{"label":"Order Ahead","href":"/order"}]},{"items":[{"label":"Hours","href":"/about"},{"label":"Instagram","href":"https://instagram.com/midnightcafe"}]}]; return ( diff --git a/src/app/page.tsx b/src/app/page.tsx index f22677f..df3701a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Coffee, Sun, Users, Vegan } from "lucide-react"; export default function HomePage() { - const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"}]; + const navItems = [{"name":"Home","id":"/"},{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"},{"name":"Order Ahead","id":"/order"},{"name":"Shop","id":"/shop"}]; const footerColumns = [{"items":[{"label":"Home","href":"/"},{"label":"Menu","href":"/menu"},{"label":"About","href":"/about"},{"label":"Order Ahead","href":"/order"}]},{"items":[{"label":"Hours","href":"/about"},{"label":"Instagram","href":"https://instagram.com/midnightcafe"}]}]; return ( @@ -40,7 +40,7 @@ export default function HomePage() { title="Midnight Cafe" description="Where coffee isn’t just made. It’s mastered." background={{ "variant": "plain" }} - imageSrc="https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg?_wi=1" + imageSrc="https://img.b2bpic.net/free-photo/talanted-barista-is-pouring-milk-jug-latte-cappuchino-his-cafe_613910-3236.jpg" imageAlt="Slow motion espresso pour with natural light" imagePosition="right" buttons={[{ "text": "Order Ahead", "href": "/order" }, { "text": "View Menu", "href": "/menu" }]} diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 6e78941..9d73859 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,7 +89,7 @@ function ProductPageContent({ params }: ProductPageProps) { headingFontWeight="normal" > -