diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3ecb64..a99af39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Public_Sans } from "next/font/google"; export const metadata: Metadata = { - title: 'Well Life Clinic | الدكتور محمد صوالحة', - description: 'عيادة الدكتور محمد صوالحة - أخصائي الطب النفسي وعلاج الإدمان في عمان.', + title: 'Webild | Digital Solutions', + description: 'Professional digital services and development solutions.', openGraph: { "title": "الدكتور محمد صوالحة", "description": "أخصائي الطب النفسي وعلاج الإدمان.", diff --git a/src/app/page.tsx b/src/app/page.tsx index a6f1bba..d0331e0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,175 +1,98 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import { User, Shield, Heart, MessageCircle, ShieldCheck, Sun, Lock } from "lucide-react"; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Shield, Zap, Target, Star, ChevronRight } from 'lucide-react'; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); }