From 530c45bc9eb900b18e997d7edb297fccdefb2be6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 20:08:42 +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 08efc31..61742de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { DM_Serif_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Home | Webild', - description: 'Next-generation digital solutions for modern businesses.', + title: 'Webild - Digital Solutions', + description: 'Revolutionizing digital experiences with high-impact solutions.', }; const dmSerif = DM_Serif_Display({ variable: "--font-dm-serif", subsets: ["latin"], weight: ["400"] }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); -- 2.49.1 From 3d2f35be5565d1069f9c60de31a058a7201f4e1e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 20:08:44 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 124 +++++++---------------------------------------- 1 file changed, 17 insertions(+), 107 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 34c6084..3a0ecb6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,4 @@ 'use client'; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; @@ -12,134 +11,45 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -export default function HomePage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - +
({ id: `hero-${i}`, imageSrc: "https://picsum.photos/400/600" }))} />
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1