diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9738ccb..627e8c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Roboto } from "next/font/google"; export const metadata: Metadata = { - title: 'شركة الأساس العريض للمقاولات', - description: 'نصنع التميز منذ 2004 بدقة متناهية وطموح يعانق الرؤية 2030.', + title: 'Webild | Home', + description: 'Building the future of digital experiences.', }; const roboto = Roboto({ diff --git a/src/app/page.tsx b/src/app/page.tsx index c9d1e04..63f36e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,182 +1,46 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroCentered from '@/components/sections/hero/HeroCentered'; -import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; +'use client'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Building, Building2, Settings, Zap } from "lucide-react"; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -export default function LandingPage() { +export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file