diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ed2f598..91264b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,12 +11,16 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Sunrise Solar Solutions | Premium Solar Installations Windhoek', - description: 'Power your future with premium solar installations in Windhoek. Own your energy and cut power costs with reliable residential solar solutions from Sunrise Solar.', + title: 'Welcome', + description: 'Welcome to our website', openGraph: { "siteName": "Sunrise Solar Solutions", "type": "website" }, + robots: { + "index": true, + "follow": true + }, }; const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] }); diff --git a/src/app/page.tsx b/src/app/page.tsx index a55fea7..6aae92b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,124 +2,52 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroOverlay from "@/components/sections/hero/HeroOverlay"; -import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import MediaAbout from "@/components/sections/about/MediaAbout"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import FaqBase from "@/components/sections/faq/FaqBase"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Shield, Zap, Target } from 'lucide-react'; -export default function HomePage() { - const navItems = [{ name: "Home", id: "/" }]; +const navItems = [{ name: "Home", id: "/" }]; +export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
- +
); -} +} \ No newline at end of file