From 06b446f2c88f0bb8635e7927898c290de9371813 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 16:13:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 169 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 165 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d39d6c0..5482ae2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,166 @@ -import { redirect } from 'next/navigation'; +"use client"; -export default function Home() { - redirect('/components'); -} \ No newline at end of file +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import Link from "next/link"; +import { Zap, BatteryCharging, Droplet, Leaf } from "lucide-react"; + +const HomePage = () => { + const navItems = [ + { name: "Hjem", id: "home", href: "/" }, + { name: "Produkter", id: "products", href: "/products" }, + { name: "Smaker", id: "taste", href: "/taste" }, + { name: "Om Oss", id: "about", href: "/about" }, + { name: "Finn Butikk", id: "store", href: "/store" }, + { name: "Community", id: "community", href: "/community" }, + ]; + + const footerNavItems = navItems.map((item) => ({ + text: item.name, + href: item.href, + })); + + const testimonialData = [ + { + id: "1", name: "Leo 'Nexus' Larsen", role: "Esports Pro Player", company: "Team Frostbite", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-headshot-of-a-young-male-gamer-20s-wit-1774368209812-0aaf7f26.png"}, + { + id: "2", name: "Maya Singh", role: "Fitness Coach", company: "Peak Performance Gym", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-headshot-of-a-young-female-fitness-ent-1774368212924-9ac7756c.png"}, + { + id: "3", name: "Axel Berg", role: "Software Developer", company: "Quantum Innovations", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-headshot-of-a-young-male-tech-entrepre-1774368209749-84d027f7.png"}, + { + id: "4", name: "Zara Khan", role: "Content Creator", company: "Vortex Streams", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-headshot-of-a-young-female-e-sports-co-1774368209378-86c6b5be.png"}, + { + id: "5", name: "Daniel Ortiz", role: "Nightlife DJ", company: "Electric Pulse Events", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-headshot-of-a-young-male-dancer-or-nig-1774368209962-ecd806ed.png"}, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}; + +export default HomePage; -- 2.49.1