Add src/app/downloads/page.tsx

This commit is contained in:
2026-06-09 09:18:21 +00:00
parent 558305be14
commit 4a2c009fdd

125
src/app/downloads/page.tsx Normal file
View File

@@ -0,0 +1,125 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Sparkles } from "lucide-react";
export default function DownloadsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="medium"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home", id: "#home"},
{
name: "Products", id: "#products"},
{
name: "Features", id: "#features"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "Pricing", id: "#pricing"},
{
name: "FAQ", id: "#faq"},
{
name: "Checkout", id: "/checkout"},
{
name: "Downloads", id: "/downloads"},
{
name: "Contact", id: "#contact"},
]}
brandName="DesignFlow"
button={{
text: "Get Started", href: "#products"}}
animateOnLoad={true}
/>
</div>
<div id="downloads-hero" data-section="downloads-hero">
<HeroBillboardTestimonial
useInvertedBackground={false}
background={{
variant: "animated-grid"}}
title="Your Digital Downloads"
description="Access all your purchased digital products instantly. Download your graphic designs anytime, anywhere. Thank you for choosing DesignFlow!"
testimonials={[]}
testimonialRotationInterval={5000}
buttons={[
{
text: "Browse More Designs", href: "#products"},
]}
avatars={[]}
avatarText=""
imageSrc="http://img.b2bpic.net/free-photo/young-man-sitting-cafe-with-laptop-downloading-something_1303-12003.jpg"
imageAlt="Man downloading digital products"
mediaAnimation="slide-up"
tag="Instant Access"
tagIcon={Sparkles}
marqueeItems={[]}
marqueeSpeed={30}
showMarqueeCard={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="DesignFlow"
columns={[
{
title: "Products", items: [
{
label: "Canva Templates", href: "#products"},
{
label: "Logos", href: "#products"},
{
label: "Social Media Kits", href: "#products"},
{
label: "Banners & Flyers", href: "#products"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#pricing"},
{
label: "Contact", href: "#contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{
label: "Refund Policy", href: "#"},
],
},
]}
copyrightText="© 2024 DesignFlow. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}