From 812f3f8415169c68d931d2d29ff5b367d9483bc7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 09:17:07 +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 4bbc2dd..7a783e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Cormorant_Garamond, Instrument_Sans } from "next/font/google"; export const metadata: Metadata = { - title: 'ENELYSS | High-Value Digital Brands for Education', - description: 'ENELYSS builds premium digital worlds for higher education institutions.', + title: 'Webild Platform', + description: 'Innovative web solutions for modern businesses.', }; const cormorant = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] }); const instrument = Instrument_Sans({ variable: "--font-instrument", subsets: ["latin"], weight: ["300", "400", "500"] }); -- 2.49.1 From a8dfa2991d3a666f13165b3eb3578c5c5d27c6a1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 09:17:08 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 186 ++++++++++++++--------------------------------- 1 file changed, 56 insertions(+), 130 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5b23cbe..f3c53b5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,139 +1,65 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import Link from 'next/link'; + +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1