3 Commits

Author SHA1 Message Date
af7ef0fc10 Update src/app/page.tsx 2026-05-13 13:43:57 +00:00
d374e9b1aa Add src/app/features/page.tsx 2026-05-13 13:43:56 +00:00
1d777f6ea6 Merge version_1 into main
Merge version_1 into main
2026-05-13 13:43:09 +00:00
2 changed files with 60 additions and 1 deletions

59
src/app/features/page.tsx Normal file
View File

@@ -0,0 +1,59 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
export default function FeaturesPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "features" }
]}
brandName="SpideyWeb"
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyEight
title="Unleashing Spider-Powers"
description="A deep dive into the unique abilities and technologies of the Spider-Verse characters."
textboxLayout="split"
useInvertedBackground={false}
animationType="blur-reveal"
features={[
{ id: "f1", title: "Wall-Crawling", subtitle: "Physics-defying movement", category: "Movement", value: "98% Success", buttons: [{ text: "Explore" }] },
{ id: "f2", title: "Web-Shooting", subtitle: "Custom web tech", category: "Gadgets", value: "High-Speed", buttons: [{ text: "Explore" }] },
{ id: "f3", title: "Spider-Sense", subtitle: "Intuitive awareness", category: "Sensory", value: "Instant", buttons: [{ text: "Explore" }] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="SpideyWeb"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Features", id: "/features" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },