diff --git a/src/app/welcome/page.tsx b/src/app/welcome/page.tsx new file mode 100644 index 0000000..17bd67f --- /dev/null +++ b/src/app/welcome/page.tsx @@ -0,0 +1,164 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { + Zap, + ShoppingCart, + TrendingUp, + Users, + Store, + Package, + DollarSign, + Star, + CheckCircle, +} from "lucide-react"; + +export default function WelcomePage() { + const footerColumns = [ + { + title: "Platform", items: [ + { label: "For Buyers", href: "/buyer" }, + { label: "For Sellers", href: "/seller" }, + { label: "How It Works", href: "#" }, + { label: "Pricing", href: "#pricing" }, + ], + }, + { + title: "Support", items: [ + { label: "Help Center", href: "#" }, + { label: "Contact Us", href: "/contact" }, + { label: "FAQ", href: "#faq" }, + { label: "Report Issue", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Press", href: "#" }, + ], + }, + ]; + + const carouselItems = [ + { + id: "1", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-modern-marketplace-dashboard-interface-1772974551757-f074afce.png", imageAlt: "Marketplace Dashboard"}, + { + id: "2", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-detailed-product-search-interface-show-1772974547310-ed15e040.png?_wi=1", imageAlt: "Product Search Interface"}, + { + id: "3", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-seller-dashboard-showing-product-inven-1772974548976-6f45f9da.png", imageAlt: "Seller Dashboard"}, + { + id: "4", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-payment-checkout-interface-showing-mul-1772974545827-a610aa1c.png?_wi=1", imageAlt: "Payment Checkout"}, + { + id: "5", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/an-order-tracking-interface-showing-real-1772974545297-60526892.png", imageAlt: "Order Tracking"}, + { + id: "6", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/an-illustration-representing-digital-mar-1772974545983-08d3526b.png", imageAlt: "Community Illustration"}, + ]; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file