Merge version_2 into main #1
@@ -30,12 +30,14 @@ export default function BlogPage() {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Shop Now", href: "#products" }}
|
||||
button={{ text: "Shop Now", href: "/shop" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -30,13 +30,16 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
{ name: "Terms", id: "/terms" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now", href: "#products"
|
||||
text: "Shop Now", href: "/shop"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -59,7 +62,7 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
ratingText="Loved by 5000+ customers"
|
||||
buttons={[
|
||||
{ text: "Explore Collection", href: "#products" },
|
||||
{ text: "Explore Collection", href: "/shop" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
tagAnimation="slide-up"
|
||||
@@ -199,7 +202,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy."
|
||||
termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy and terms of service."
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
132
src/app/privacy/page.tsx
Normal file
132
src/app/privacy/page.tsx
Normal file
@@ -0,0 +1,132 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Facebook, Twitter } from "lucide-react";
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now", href: "/shop"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<main className="pt-20">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: January 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Introduction", content: [
|
||||
{
|
||||
type: "paragraph", text: "Gus Premium Cups (\"we,\" \"us,\" or \"Company\") respects the privacy of our users (\"user\" or \"you\"). This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and purchase our products."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Information We Collect", content: [
|
||||
{
|
||||
type: "paragraph", text: "We may collect information about you in a variety of ways. The information we may collect on the Site includes:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Personal Data: Personally identifiable information, such as your name, shipping address, email address, and telephone number, that you voluntarily give to us when you register with the Site or when you choose to participate in various activities related to the Site.", "Financial Data: Financial information, such as data related to your payment method (e.g., valid credit card number, card brand, expiration date) that we may collect when you purchase, order, return, exchange, or request information about our services from the Site.", "Data From Contests, Giveaways, and Surveys: Personal and other information you may provide when entering contests or giveaways and/or responding to surveys."
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Use of Your Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "Having accurate information about you permits us to provide you with a smooth, efficient, and customized experience. Specifically, we may use information collected about you via the Site to:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Generate a personal profile about you so that future visits to the Site will be personalized as possible.", "Increase the functionality and user-friendliness of the Site.", "Monitor and analyze usage and trends to improve your experience with the Site.", "Notify you of updates to the Site.", "Offer new products, services, and/or recommendations to you."
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Disclosure of Your Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "We may share information we have collected about you in certain situations:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"By Law or to Protect Rights: If we believe the release of information about you is necessary to comply with the law, enforce our Site policies, or protect ours or others' rights, property, and safety.", "Third-Party Service Providers: We may share your information with third parties that perform services for us or on our behalf, including payment processing, data analysis, email delivery, hosting services, customer service, and marketing assistance."
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Security of Your Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "We use administrative, technical, and physical security measures to help protect your personal information. While we have taken reasonable steps to secure the personal information you provide to us, please be aware that despite our efforts, no security measures are perfect or impenetrable."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Contact Us", content: [
|
||||
{
|
||||
type: "paragraph", text: "If you have questions or comments about this Privacy Policy, please contact us at:"
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "Email: nikolay@blagmail.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</main>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Gus"
|
||||
copyrightText="© 2025 Gus Premium Cups | All rights reserved"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/guscups", ariaLabel: "Instagram"
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/guscups", ariaLabel: "Facebook"
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/guscups", ariaLabel: "Twitter"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -87,10 +87,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -134,10 +136,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -188,10 +192,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
|
||||
@@ -37,10 +37,12 @@ export default function ShopPage() {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -83,10 +85,12 @@ export default function ShopPage() {
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" },
|
||||
{ name: "Privacy", id: "/privacy" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
|
||||
107
src/app/support/page.tsx
Normal file
107
src/app/support/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Facebook, Twitter, Mail } from "lucide-react";
|
||||
|
||||
export default function SupportPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
{ name: "Terms", id: "/terms" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now", href: "/shop"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<main className="min-h-screen pt-32 pb-20">
|
||||
<div className="mx-auto max-w-2xl px-4">
|
||||
<section className="mb-12">
|
||||
<h1 className="text-4xl font-bold mb-4 text-foreground">Support & Contact</h1>
|
||||
<p className="text-lg text-foreground/80 mb-8">We're here to help! Get in touch with us for any questions or concerns about your Gus products.</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-12 p-8 rounded-theme bg-card">
|
||||
<h2 className="text-2xl font-bold mb-4 text-foreground">Get in Touch</h2>
|
||||
<div className="flex items-center gap-3 mb-6">
|
||||
<Mail className="w-6 h-6 text-primary-cta" />
|
||||
<div>
|
||||
<p className="text-sm text-foreground/60">Email us at</p>
|
||||
<a href="mailto:nikolay@blagmail.com" className="text-lg font-semibold text-primary-cta hover:underline">
|
||||
nikolay@blagmail.com
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<p className="text-foreground/80">We typically respond to all inquiries within 24 hours during business days.</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-12">
|
||||
<h2 className="text-2xl font-bold mb-6 text-foreground">Frequently Asked Questions</h2>
|
||||
<div className="space-y-4">
|
||||
<details className="p-4 rounded-theme bg-card cursor-pointer hover:bg-accent/10 transition-colors">
|
||||
<summary className="font-semibold text-foreground">What is your return policy?</summary>
|
||||
<p className="mt-3 text-foreground/80">We offer a 30-day money-back guarantee on all products. Items must be unused and in original packaging.</p>
|
||||
</details>
|
||||
<details className="p-4 rounded-theme bg-card cursor-pointer hover:bg-accent/10 transition-colors">
|
||||
<summary className="font-semibold text-foreground">How long does shipping take?</summary>
|
||||
<p className="mt-3 text-foreground/80">Standard shipping takes 5-7 business days. Express shipping options are available at checkout.</p>
|
||||
</details>
|
||||
<details className="p-4 rounded-theme bg-card cursor-pointer hover:bg-accent/10 transition-colors">
|
||||
<summary className="font-semibold text-foreground">Are your cups microwave safe?</summary>
|
||||
<p className="mt-3 text-foreground/80">Yes, all our Gus ceramic cups are microwave and dishwasher safe. Hand washing is recommended to preserve the glaze.</p>
|
||||
</details>
|
||||
<details className="p-4 rounded-theme bg-card cursor-pointer hover:bg-accent/10 transition-colors">
|
||||
<summary className="font-semibold text-foreground">Do you offer bulk orders or corporate gifts?</summary>
|
||||
<p className="mt-3 text-foreground/80">Yes! We offer special pricing for bulk orders and corporate gifting. Contact us at nikolay@blagmail.com for details.</p>
|
||||
</details>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Gus"
|
||||
copyrightText="© 2025 Gus Premium Cups | All rights reserved"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/guscups", ariaLabel: "Instagram"
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/guscups", ariaLabel: "Facebook"
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/guscups", ariaLabel: "Twitter"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
143
src/app/terms/page.tsx
Normal file
143
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,143 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Facebook, Twitter } from "lucide-react";
|
||||
|
||||
export default function TermsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Gus"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "/support" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now", href: "/shop"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<main className="pt-20">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
subtitle="Last updated: January 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Agreement to Terms", content: [
|
||||
{
|
||||
type: "paragraph", text: "These Terms of Service (\"Terms\") and any policies or operating rules posted by us on this site or in connection with the Services constitute the entire agreement and understanding between you and Gus Premium Cups. By accessing and using this website, you accept and agree to be bound by and comply with these Terms and our Privacy Policy."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Use License", content: [
|
||||
{
|
||||
type: "paragraph", text: "Permission is granted to temporarily download one copy of the materials (information or software) on Gus Premium Cups' website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Modify or copy the materials.", "Use the materials for any commercial purpose or for any public display.", "Attempt to reverse engineer any software contained on the website.", "Remove any copyright or other proprietary notations from the materials.", "Transfer the materials to another person or \"mirror\" the materials on any other server."
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Disclaimer", content: [
|
||||
{
|
||||
type: "paragraph", text: "The materials on Gus Premium Cups' website are provided on an 'as is' basis. Gus makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Limitations", content: [
|
||||
{
|
||||
type: "paragraph", text: "In no event shall Gus Premium Cups or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on Gus Premium Cups' website, even if Gus or an authorized representative has been notified orally or in writing of the possibility of such damage."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Accuracy of Materials", content: [
|
||||
{
|
||||
type: "paragraph", text: "The materials appearing on Gus Premium Cups' website could include technical, typographical, or photographic errors. Gus does not warrant that any of the materials on the website are accurate, complete, or current. Gus may make changes to the materials contained on its website at any time without notice."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Links", content: [
|
||||
{
|
||||
type: "paragraph", text: "Gus has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by Gus of the site. Use of any such linked website is at the user's own risk."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "7. Modifications", content: [
|
||||
{
|
||||
type: "paragraph", text: "Gus may revise these Terms of Service for the website at any time without notice. By using this website, you are agreeing to be bound by the then current version of these Terms of Service."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "8. Governing Law", content: [
|
||||
{
|
||||
type: "paragraph", text: "These Terms and Conditions of use are governed by and construed in accordance with the laws of the jurisdiction in which Gus is located, and you irrevocably submit to the exclusive jurisdiction of the courts in that location."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "9. Contact Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "If you have any questions about these Terms of Service, please contact us at:"
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "Email: nikolay@blagmail.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</main>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Gus"
|
||||
copyrightText="© 2025 Gus Premium Cups | All rights reserved"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/guscups", ariaLabel: "Instagram"
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/guscups", ariaLabel: "Facebook"
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/guscups", ariaLabel: "Twitter"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user