Add src/app/about/page.tsx

This commit is contained in:
2026-06-11 05:16:57 +00:00
parent 5f3dfb537e
commit 5a3558be05

84
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,84 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="none"
cardStyle="glass-depth"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home", href: "/"},
{
name: "Shop", href: "/#shop"},
{
name: "Lookbook", href: "/lookbook"},
{
name: "About", href: "/about"},
]}
brandName="1VAULT"
button={{
text: "Cart", href: "/cart"}}
animateOnLoad={true}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="1VAULT is not for everyone."
description={[
"It was never meant to be. We forge luxury streetwear for those who understand true exclusivity. This is not just clothing; it's a statement, a philosophy, a piece of art reserved for the discerning few.", "Every stitch, every fabric choice, every design element is meticulously curated to embody a dark, refined aesthetic. We challenge the norms of ready-to-wear, creating limited-edition pieces that transcend fleeting trends. To own 1VAULT is to possess a key to an exclusive world. Enter the vault, if you dare."]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Shop", href: "/#shop"},
{
label: "Lookbook", href: "/lookbook"},
{
label: "About", href: "/about"},
],
},
{
items: [
{
label: "Instagram", href: "https://www.instagram.com/1vault"},
{
label: "TikTok", href: "https://www.tiktok.com/@1vault"},
{
label: "Privacy Policy", href: "/privacy"},
{
label: "Terms of Service", href: "/terms"},
],
},
]}
logoText="1VAULT"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}