Add src/app/terms-of-service/page.tsx
This commit is contained in:
111
src/app/terms-of-service/page.tsx
Normal file
111
src/app/terms-of-service/page.tsx
Normal file
@@ -0,0 +1,111 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function TermsOfServicePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="medium"
|
||||
background="blurBottom"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Research", id: "/#research" },
|
||||
{ name: "Brands", id: "/#brands" },
|
||||
{ name: "Impact", id: "/#impact" },
|
||||
{ name: "Insights", id: "/#insights" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms-of-service" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
|
||||
brandName="TrendLens Insights"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="terms-of-service" data-section="terms-of-service">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Acceptance of Terms", content: [
|
||||
{ type: "paragraph", text: "By accessing and using the TrendLens Insights website (www.trendlensinsights.com), you agree to be bound by these Terms of Service ('Terms'). If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. These Terms apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Use of the Site", content: [
|
||||
{ type: "paragraph", text: "You agree to use the Site only for lawful purposes and in a way that does not infringe the rights of, restrict or inhibit anyone else's use and enjoyment of the Site. Prohibited behavior includes harassing or causing distress or inconvenience to any other user, transmitting obscene or offensive content or disrupting the normal flow of dialogue within the Site." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Intellectual Property", content: [
|
||||
{ type: "paragraph", text: "All content on the Site, including text, graphics, logos, images, as well as the compilation thereof, and any software used on the Site, is the property of TrendLens Insights or its suppliers and protected by copyright and other laws that protect intellectual property and proprietary rights. You agree to observe and abide by all copyright and other proprietary notices, legends or other restrictions contained in any such content and will not make any changes thereto." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Disclaimer of Warranties", content: [
|
||||
{ type: "paragraph", text: "The information, software, products, and services included in or available through the Site may include inaccuracies or typographical errors. TrendLens Insights and/or its suppliers may make improvements and/or changes in the Site at any time. TrendLens Insights and/or its suppliers make no representations about the suitability, reliability, availability, timeliness, and accuracy of the information, software, products, services and related graphics contained on the Site for any purpose." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Limitation of Liability", content: [
|
||||
{ type: "paragraph", text: "To the maximum extent permitted by applicable law, in no event shall TrendLens Insights and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use or performance of the Site, with the delay or inability to use the Site or related services, the provision of or failure to provide services, or for any information, software, products, services and related graphics obtained through the Site, or otherwise arising out of the use of the Site, whether based on contract, tort, negligence, strict liability or otherwise." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/charming-lady-with-dark-hair-sitting-floor-near-window_7502-9025.jpg?_wi=1"
|
||||
imageAlt="Luxury fashion studio background"
|
||||
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
|
||||
logoText="TrendLens Insights"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Market Research", href: "/#research" },
|
||||
{ label: "Trend Analysis", href: "/#insights" },
|
||||
{ label: "Brand Curation", href: "/#brands" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Client Stories", href: "/#testimonials" },
|
||||
{ label: "Contact", href: "/#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy-policy" },
|
||||
{ label: "Terms of Service", href: "/terms-of-service" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 TrendLens Insights. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user