From 7f1fdd39a0154a19565382dbf560732a6cac0e3d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:37:53 +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 428ea88..430c489 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', - description: 'Welcome to our website.', + title: 'Webild - Innovation at Scale', + description: 'Empowering businesses with cutting-edge technology 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 9259047145e429e38c929c31e0ac3e34355328e3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:37:53 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a65ddc..7e87c1c 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,45 +11,54 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -const navItems = [{ name: "Home", id: "/" }]; +const navItems = [ + { name: "Home", id: "/" }, +]; export default function Page() { return ( - +
({ id: i.toString() }))} + title="Innovation at Scale" + description="Empowering businesses with cutting-edge technology solutions." + background={{ variant: "animated-grid" }} + carouselItems={[ + { id: "1", imageSrc: "https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=800" }, + { id: "2", imageSrc: "https://images.unsplash.com/photo-1573164713714-d7572782e4e1?q=80&w=800" }, + { id: "3", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=800" }, + { id: "4", imageSrc: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=800" }, + { id: "5", imageSrc: "https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=800" }, + { id: "6", imageSrc: "https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=800" } + ]} />
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1