From e38d21920dd2326fcc54dd41cfe5a2c293763294 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 14:45:26 +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 b9a4156..c00f3f4 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: 'Webild - Innovative Solutions', - description: 'We provide top-tier services to help your business scale efficiently.', + title: 'Al Faro Pizza al Taglio', + description: 'Authentic Roman-style pizza by the slice.', openGraph: { "title": ".AL FARO", "siteName": ".AL FARO Pizza al Taglio", -- 2.49.1 From 51c6b9a9357d0785cda019d6961ff3541c173f2c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 14:45:27 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 129 +++++++++++++++++------------------------------ 1 file changed, 47 insertions(+), 82 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f405f0..11b7b4a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,4 @@ 'use client'; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; @@ -9,112 +8,78 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from "next/link"; -export default function HomePage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } - ]; +const navItems = [{ name: "Home", id: "/" }]; +export default function Page() { return ( - + -
-
-
-
-
-
-
-
-
-
-
-
-
); -} \ No newline at end of file +} -- 2.49.1