Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30167c732f | |||
| 9db33fa96a | |||
| 75f329c840 | |||
| 35f1040a42 | |||
| 096d27bf3c | |||
| a99d449413 | |||
| 5db5319c26 |
@@ -29,11 +29,12 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "#home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Terms of Service", id: "/terms" },
|
||||
]}
|
||||
brandName="Sarah Franks"
|
||||
/>
|
||||
@@ -147,7 +148,7 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -157,4 +158,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
101
src/app/terms/page.tsx
Normal file
101
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,101 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function TermsOfServicePage() {
|
||||
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>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Terms of Service", id: "/terms" },
|
||||
]}
|
||||
brandName="Sarah Franks"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="pt-32 pb-20">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
subtitle="Last updated: October 2023"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Acceptance of Terms",
|
||||
content: { type: "paragraph", text: "By accessing or using the services provided by Sarah Franks Etsy Growth Expert, you agree to comply with these terms. If you do not agree with any part of these terms, please discontinue use of our services immediately." }
|
||||
},
|
||||
{
|
||||
heading: "2. Services Provided",
|
||||
content: { type: "list", items: ["Etsy SEO Consulting & Audit", "Brand Identity Development", "Listing Optimization", "Growth Strategy Consulting"] }
|
||||
},
|
||||
{
|
||||
heading: "3. User Responsibilities",
|
||||
content: { type: "numbered-list", items: ["Provide accurate information regarding your Etsy shop statistics.", "Implement strategic recommendations in good faith.", "Maintain the confidentiality of shared brand strategy documents.", "Ensure all materials shared for audit are original and compliant with Etsy policies."] }
|
||||
},
|
||||
{
|
||||
heading: "4. Disclaimer of Earnings",
|
||||
content: { type: "paragraph", text: "While our strategies are data-driven and proven effective, we make no guarantees regarding specific revenue growth. Etsy algorithm changes are constant and outside of our control." }
|
||||
},
|
||||
{
|
||||
heading: "5. Limitation of Liability",
|
||||
content: { type: "paragraph", text: "Sarah Franks Etsy Growth Expert is not liable for any direct or indirect business losses arising from the implementation of advised strategies." }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Sarah Franks"
|
||||
columns={[
|
||||
{
|
||||
title: "The Brand",
|
||||
items: [
|
||||
{ label: "Etsy Expert Consulting", href: "/#about" },
|
||||
{ label: "Shop SEO Specialists", href: "/#services" },
|
||||
{ label: "Proven Growth Methods", href: "/#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "Email: sarahfrankbooks@gmail.com", href: "mailto:sarahfrankbooks@gmail.com" },
|
||||
{ label: "Follow on Instagram", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Sarah Franks Consulting. All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user