From 00f17f63bd90125dfe50dfdabdb028815e593661 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 11:38:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 92 ++++++++++++------------------------------------ 1 file changed, 22 insertions(+), 70 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e1271c9..2e0c49f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,94 +1,46 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import FaqBase from "@/components/sections/faq/FaqBase"; -import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles, HelpCircle } from "lucide-react"; // Importing icons for sections +import { ThemeProvider } from "next-themes"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import { Sparkles } from 'lucide-react'; export default function Home() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Features", id: "#features" }, - { name: "FAQ", id: "#faq" }, - { name: "Contact", id: "/contact" } - ]; - - const heroMediaItems = [ - { imageSrc: "https://r2.radikal.ru/pics/2024.03.11/f90462002f232f38d35f8e561491e523.jpg", imageAlt: "Placeholder image 1" }, - { imageSrc: "https://r2.radikal.ru/pics/2024.03.11/f90462002f232f38d35f8e561491e523.jpg", imageAlt: "Placeholder image 2" }, - { imageSrc: "https://r2.radikal.ru/pics/2024.03.11/f90462002f232f38d35f8e561491e523.jpg", imageAlt: "Placeholder image 3" } - ]; - - const faqItems = [ - { id: "1", title: "What is Webild?", content: "Webild is a platform for building modern web applications." }, - { id: "2", title: "How do I get started?", content: "You can get started by signing up for a free account." }, - { id: "3", title: "Is there a free plan?", content: "Yes, we offer a generous free plan for individual users." } - ]; - - const footerColumns = [ - { - title: "Company", items: [ - { label: "Home", href: "/" }, - { label: "Contact", href: "/contact" } - ] - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#privacy" }, - { label: "Terms of Service", href: "#terms" } - ] - } + { name: "Home", href: "/" }, + { name: "Tenders & Procurement", href: "/tenders-procurement" } ]; return ( - -
-
- -
-
- -
- +