6 Commits

Author SHA1 Message Date
b92536ed54 Switch to version 4: remove src/app/terms/page.tsx 2026-04-12 11:35:23 +00:00
0406758f8c Switch to version 4: modified src/app/page.tsx 2026-04-12 11:35:22 +00:00
0ab3749080 Merge version_5 into main
Merge version_5 into main
2026-04-12 11:34:58 +00:00
1288cb4531 Merge version_5 into main
Merge version_5 into main
2026-04-12 11:32:22 +00:00
763f6d418f Merge version_5 into main
Merge version_5 into main
2026-04-12 11:29:50 +00:00
293622d63c Merge version_5 into main
Merge version_5 into main
2026-04-12 11:29:23 +00:00
2 changed files with 3 additions and 105 deletions

View File

@@ -29,12 +29,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "#home" },
{ 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"
/>
@@ -148,7 +147,7 @@ export default function LandingPage() {
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Terms of Service", href: "#" },
],
},
]}
@@ -158,4 +157,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1,101 +0,0 @@
"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>
);
}