From ca8da65609f9edf9171b9f908d78d04499538915 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 21:50:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6680600..4668f8f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Rocky\'s Cafe | Authentic Mountain Breakfast', - description: 'A cozy, family-run mountain breakfast worth the drive. Homemade food, massive portions, and true redwood warmth.', + title: 'Rocky\'s Culinary Traditions', + description: 'Authentic dining experience for food lovers.', openGraph: { "title": "Rocky's Cafe | Breakfast in the Redwoods", "description": "A local tradition. Homemade food, strong coffee, and mountain charm.", -- 2.49.1 From 885be9d1540ca6fbd040d0aa5cefc712e4bdcf67 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 21:50:33 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 122 ++++++++--------------------------------------- 1 file changed, 21 insertions(+), 101 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 12f2ccf..d92f368 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; @@ -9,134 +9,54 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import Link from "next/link"; const navItems = [{ name: "Home", id: "/" }]; export default function Page() { return ( - +
-
- +
- +
-
- +
- +
); -- 2.49.1