Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1fab4bb897 | |||
| 4a5d22a79f | |||
| d405d978bf | |||
| 6fece504b8 | |||
| fa53144fd7 | |||
| ca3f3ca3c7 | |||
| bb24213d57 |
202
src/app/page.tsx
202
src/app/page.tsx
@@ -17,33 +17,27 @@ import { Shield } from "lucide-react";
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-bubble"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="pill"
|
borderRadius="soft"
|
||||||
contentWidth="smallMedium"
|
contentWidth="mediumSmall"
|
||||||
sizing="mediumLarge"
|
sizing="medium"
|
||||||
background="blurBottom"
|
background="noise"
|
||||||
cardStyle="inset"
|
cardStyle="outline"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Features",
|
name: "Features", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Jobs",
|
name: "Jobs", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="CareerConnect"
|
brandName="CareerConnect"
|
||||||
/>
|
/>
|
||||||
@@ -52,19 +46,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
logoText="CareerConnect"
|
logoText="CareerConnect"
|
||||||
description="The fastest way to land your dream job at the world's most innovative tech companies."
|
description="The fastest way to land your dream job at the world's most innovative tech companies."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Jobs",
|
text: "View Jobs", href: "#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/group-friends-looking-menu-together-restaurant_23-2150520049.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/group-friends-looking-menu-together-restaurant_23-2150520049.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -93,40 +82,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "AI Matching", subtitle: "Get recommendations based on your unique skills.", category: "Tools", value: "95%"},
|
||||||
title: "AI Matching",
|
|
||||||
subtitle: "Get recommendations based on your unique skills.",
|
|
||||||
category: "Tools",
|
|
||||||
value: "95%",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Resume Review", subtitle: "Professional analysis of your resume and CV.", category: "Support", value: "Free"},
|
||||||
title: "Resume Review",
|
|
||||||
subtitle: "Professional analysis of your resume and CV.",
|
|
||||||
category: "Support",
|
|
||||||
value: "Free",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Interview Prep", subtitle: "Ace your interview with our expert resources.", category: "Training", value: "10+"},
|
||||||
title: "Interview Prep",
|
|
||||||
subtitle: "Ace your interview with our expert resources.",
|
|
||||||
category: "Training",
|
|
||||||
value: "10+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f4",
|
id: "f4", title: "Skill Badging", subtitle: "Get certified in trending industry technologies.", category: "Certification", value: "Verify"},
|
||||||
title: "Skill Badging",
|
|
||||||
subtitle: "Get certified in trending industry technologies.",
|
|
||||||
category: "Certification",
|
|
||||||
value: "Verify",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f5",
|
id: "f5", title: "Salary Insights", subtitle: "Negotiate with confidence using market data.", category: "Analytics", value: "Real-time"},
|
||||||
title: "Salary Insights",
|
|
||||||
subtitle: "Negotiate with confidence using market data.",
|
|
||||||
category: "Analytics",
|
|
||||||
value: "Real-time",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Choose Us"
|
title="Why Choose Us"
|
||||||
description="We provide the tools you need to succeed."
|
description="We provide the tools you need to succeed."
|
||||||
@@ -140,20 +104,11 @@ export default function LandingPage() {
|
|||||||
tag="Trusted by Millions"
|
tag="Trusted by Millions"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "1M+", description: "Active Job Seekers"},
|
||||||
value: "1M+",
|
|
||||||
description: "Active Job Seekers",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "50k+", description: "Companies Hiring"},
|
||||||
value: "50k+",
|
|
||||||
description: "Companies Hiring",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "100%", description: "Satisfaction Rate"},
|
||||||
value: "100%",
|
|
||||||
description: "Satisfaction Rate",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -166,40 +121,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "I found my dream job within a week! Truly amazing service.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg"},
|
||||||
name: "Sarah Johnson",
|
|
||||||
handle: "@sarahj",
|
|
||||||
testimonial: "I found my dream job within a week! Truly amazing service.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "Excellent interface and very accurate job matches.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card-medium-shot_23-2149343384.jpg"},
|
||||||
name: "Michael Chen",
|
|
||||||
handle: "@mchen",
|
|
||||||
testimonial: "Excellent interface and very accurate job matches.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card-medium-shot_23-2149343384.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", handle: "@emilyr", testimonial: "The interview prep resources really gave me the confidence I needed.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-man-suit_23-2149705918.jpg"},
|
||||||
name: "Emily Rodriguez",
|
|
||||||
handle: "@emilyr",
|
|
||||||
testimonial: "The interview prep resources really gave me the confidence I needed.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-man-suit_23-2149705918.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Kim", handle: "@dkim", testimonial: "A must-have tool for anyone searching for a new career path.", imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg"},
|
||||||
name: "David Kim",
|
|
||||||
handle: "@dkim",
|
|
||||||
testimonial: "A must-have tool for anyone searching for a new career path.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Jane Smith", handle: "@jsmith", testimonial: "The AI matching feature is incredibly powerful and efficient.", imageSrc: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg"},
|
||||||
name: "Jane Smith",
|
|
||||||
handle: "@jsmith",
|
|
||||||
testimonial: "The AI matching feature is incredibly powerful and efficient.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Voices of Success"
|
title="Voices of Success"
|
||||||
description="Read stories from those who found their path through CareerConnect."
|
description="Read stories from those who found their path through CareerConnect."
|
||||||
@@ -211,14 +141,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Microsoft",
|
"Microsoft", "Google", "Amazon", "Apple", "Meta", "Netflix", "Salesforce"]}
|
||||||
"Google",
|
|
||||||
"Amazon",
|
|
||||||
"Apple",
|
|
||||||
"Meta",
|
|
||||||
"Netflix",
|
|
||||||
"Salesforce",
|
|
||||||
]}
|
|
||||||
title="Hiring Partners"
|
title="Hiring Partners"
|
||||||
description="Leading companies trust us to find top talent."
|
description="Leading companies trust us to find top talent."
|
||||||
/>
|
/>
|
||||||
@@ -230,30 +153,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Is it free to use?", content: "Yes, our basic job search features are completely free for all users."},
|
||||||
title: "Is it free to use?",
|
|
||||||
content: "Yes, our basic job search features are completely free for all users.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "How does AI matching work?", content: "We analyze your profile, skills, and work history to provide high-precision matches."},
|
||||||
title: "How does AI matching work?",
|
|
||||||
content: "We analyze your profile, skills, and work history to provide high-precision matches.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Can companies message me directly?", content: "Yes, with our premium account, companies can reach out to you directly for interviews."},
|
||||||
title: "Can companies message me directly?",
|
|
||||||
content: "Yes, with our premium account, companies can reach out to you directly for interviews.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q4",
|
id: "q4", title: "Is my data secure?", content: "Absolutely. We use top-tier encryption to ensure your personal data remains private."},
|
||||||
title: "Is my data secure?",
|
|
||||||
content: "Absolutely. We use top-tier encryption to ensure your personal data remains private.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q5",
|
id: "q5", title: "Can I hide my profile?", content: "Yes, you can toggle your profile visibility at any time from your account settings."},
|
||||||
title: "Can I hide my profile?",
|
|
||||||
content: "Yes, you can toggle your profile visibility at any time from your account settings.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Answers to common questions about our platform."
|
description="Answers to common questions about our platform."
|
||||||
@@ -265,16 +173,13 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Ready to Start?"
|
tag="Ready to Start?"
|
||||||
title="Join CareerConnect Today"
|
title="Join CareerConnect Today"
|
||||||
description="Create your profile in minutes and start your journey to a new career."
|
description="Create your profile in minutes and start your journey to a new career."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Create Account",
|
text: "Create Account", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -284,42 +189,27 @@ export default function LandingPage() {
|
|||||||
logoText="CareerConnect"
|
logoText="CareerConnect"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Jobs",
|
label: "Jobs", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "FAQ",
|
label: "FAQ", href: "#faq"},
|
||||||
href: "#faq",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -329,4 +219,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
51
src/app/shop/page.tsx
Normal file
51
src/app/shop/page.tsx
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
|
||||||
|
export default function ShopPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Shop", id: "/shop" }
|
||||||
|
]}
|
||||||
|
brandName="Elegance"
|
||||||
|
/>
|
||||||
|
<ProductCardFour
|
||||||
|
title="Our Collection"
|
||||||
|
description="Discover our latest arrivals."
|
||||||
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
textboxLayout="default"
|
||||||
|
products={[
|
||||||
|
{ id: "1", name: "Silk Blouse", price: "$120", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-with-hat-posing_23-2148906950.jpg" },
|
||||||
|
{ id: "2", name: "Evening Dress", price: "$250", variant: "Luxury", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-elegant-dress-posing_23-2148906954.jpg" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="Elegance"
|
||||||
|
columns={[]}
|
||||||
|
copyrightText="© 2024 Elegance."
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #fffefe;
|
--background: #f7f6f7;
|
||||||
--card: #f6f7f4;
|
--card: #ffffff;
|
||||||
--foreground: #080908;
|
--foreground: #1b0c25;
|
||||||
--primary-cta: #0e3a29;
|
--primary-cta: #1b0c25;
|
||||||
--primary-cta-text: #fffefe;
|
--primary-cta-text: #fffefe;
|
||||||
--secondary-cta: #e7eecd;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #080908;
|
--secondary-cta-text: #080908;
|
||||||
--accent: #35c18b;
|
--accent: #ff93e4;
|
||||||
--background-accent: #ecebe4;
|
--background-accent: #e8a8c3;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
47
src/app/womens-clothing/page.tsx
Normal file
47
src/app/womens-clothing/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
|
||||||
|
export default function WomensClothingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Women's Clothing", id: "/womens-clothing" }
|
||||||
|
]}
|
||||||
|
brandName="CareerConnect"
|
||||||
|
/>
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<ProductCatalog
|
||||||
|
layout="page"
|
||||||
|
products={[]}
|
||||||
|
filters={[
|
||||||
|
{ label: "Category", options: ["Dresses", "Tops", "Bottoms", "Accessories"], selected: "", onChange: () => {} }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="CareerConnect"
|
||||||
|
columns={[]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user