Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e055500aa | |||
| 48953a4127 | |||
| 7ceb058fbb | |||
| de268e2aad | |||
| 4f2afa47e8 | |||
| bfbc324938 | |||
| aae79ef142 | |||
| 75e0310800 | |||
| 2b6f26a7d6 | |||
| 67bd5a93a6 | |||
| 0f426b912f | |||
| 9a09f9df12 | |||
| 1044c23c5e | |||
| fea4a588aa | |||
| 980079feb4 | |||
| c86a6a8f11 | |||
| 0d8dc3b180 | |||
| 6dbec8ec2b | |||
| 8129dfe16a | |||
| 14d0c21bba | |||
| c37159c747 | |||
| 3cf978b9ec | |||
| 1884802c5d | |||
| cc88b5499d | |||
| 1421e2aaa5 | |||
| 360bf883a1 | |||
| efeefa4733 | |||
| 9bee782185 | |||
| 9551650994 | |||
| 370736210e | |||
| c025f09692 | |||
| ed069bc620 | |||
| 8f0d85d182 | |||
| 9488d3667c | |||
| 5dbd0ad62a | |||
| 11b7cd9abb | |||
| 0297555259 | |||
| 8394ee19f9 | |||
| 5e926d345d | |||
| 52031de415 | |||
| 260c8f0db4 | |||
| 71ca7b1b81 | |||
| 582be7c99f | |||
| 38b6511e5d |
@@ -1,28 +0,0 @@
|
|||||||
"use client";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
||||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
|
|
||||||
export default function BettingPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
||||||
<NavbarStyleApple
|
|
||||||
navItems={[{ name: "Home", id: "/" }, { name: "Games", id: "/games" }, { name: "Betting", id: "/betting" }]}
|
|
||||||
brandName="Swift Haul"
|
|
||||||
/>
|
|
||||||
<PricingCardEight
|
|
||||||
title="Sports Betting Arena"
|
|
||||||
description="Get competitive odds on your favorite sporting events."
|
|
||||||
plans={[
|
|
||||||
{ id: "1", badge: "Premier", price: "1.85", subtitle: "Team A Win", buttons: [{text: "Bet Now"}], features: ["Fast Payouts", "Live Stats"] },
|
|
||||||
{ id: "2", badge: "Premier", price: "2.10", subtitle: "Team B Win", buttons: [{text: "Bet Now"}], features: ["Fast Payouts", "Live Stats"] }
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<FooterBaseReveal logoText="Swift Haul" columns={[]} />
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
"use client";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
||||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
|
|
||||||
export default function GamesPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
||||||
<NavbarStyleApple
|
|
||||||
navItems={[{ name: "Home", id: "/" }, { name: "Games", id: "/games" }, { name: "Betting", id: "/betting" }]}
|
|
||||||
brandName="Swift Haul"
|
|
||||||
/>
|
|
||||||
<FeatureCardTwentySeven
|
|
||||||
title="Our Casino Games"
|
|
||||||
description="Explore our curated selection of premium casino games, from slots to live dealer experiences."
|
|
||||||
features={[
|
|
||||||
{ id: "1", title: "Classic Slots", descriptions: ["Retro vibes"], imageSrc: "" },
|
|
||||||
{ id: "2", title: "Live Roulette", descriptions: ["Real-time action"], imageSrc: "" }
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<FooterBaseReveal logoText="Swift Haul" columns={[]} />
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Roboto } from "next/font/google";
|
import { Roboto } from "next/font/google";
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${roboto.variable} antialiased`}>
|
<body className={`${roboto.variable} antialiased`}>
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
||||||
|
|
||||||
export default function LoginPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
||||||
<NavbarStyleApple navItems={[{ name: "Home", id: "/" }, { name: "Login", id: "/login" }]} brandName="Swift Haul" />
|
|
||||||
<div className="min-h-screen flex items-center justify-center pt-20">
|
|
||||||
<ContactText
|
|
||||||
text="Login to Your Account"
|
|
||||||
background={{ variant: "gradient-bars" }}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -30,10 +30,9 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "#about" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Services", id: "#features" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "#contact" },
|
||||||
{ name: "Account", id: "/login" }
|
|
||||||
]}
|
]}
|
||||||
brandName="Swift Haul"
|
brandName="Swift Haul"
|
||||||
/>
|
/>
|
||||||
@@ -44,15 +43,21 @@ export default function LandingPage() {
|
|||||||
title="Reliable Freight Solutions for Every Mile"
|
title="Reliable Freight Solutions for Every Mile"
|
||||||
description="Swift Haul provides efficient, secure, and time-sensitive trucking services across the nation. Your cargo, our priority."
|
description="Swift Haul provides efficient, secure, and time-sensitive trucking services across the nation. Your cargo, our priority."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get a Quote", href: "#contact" },
|
{
|
||||||
|
text: "Get a Quote", href: "#contact"},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/white-semi-truck-driving-highway-sunset_23-2151998715.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/white-semi-truck-driving-highway-sunset_23-2151998715.jpg"
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg", alt: "Logistics partner 1" },
|
{
|
||||||
{ src: "http://img.b2bpic.net/free-photo/successful-woman-with-laptop-smiling-looking-side_259150-56871.jpg", alt: "Logistics partner 2" },
|
src: "http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg", alt: "Logistics partner 1"},
|
||||||
{ src: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12782.jpg", alt: "Logistics partner 3" },
|
{
|
||||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-clipboard_23-2149214304.jpg", alt: "Logistics partner 4" },
|
src: "http://img.b2bpic.net/free-photo/successful-woman-with-laptop-smiling-looking-side_259150-56871.jpg", alt: "Logistics partner 2"},
|
||||||
{ src: "http://img.b2bpic.net/free-photo/smiley-woman-office-holding-tablet_23-2148356266.jpg", alt: "Logistics partner 5" },
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12782.jpg", alt: "Logistics partner 3"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-clipboard_23-2149214304.jpg", alt: "Logistics partner 4"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/smiley-woman-office-holding-tablet_23-2148356266.jpg", alt: "Logistics partner 5"},
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ partners"
|
avatarText="Trusted by 500+ partners"
|
||||||
/>
|
/>
|
||||||
@@ -66,9 +71,12 @@ export default function LandingPage() {
|
|||||||
title="Years of Excellence in Logistics"
|
title="Years of Excellence in Logistics"
|
||||||
description="We started as a local carrier and have evolved into a full-scale logistics powerhouse. We combine modern technology with traditional trucking values to ensure your shipments are delivered safely and on schedule."
|
description="We started as a local carrier and have evolved into a full-scale logistics powerhouse. We combine modern technology with traditional trucking values to ensure your shipments are delivered safely and on schedule."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{ title: "24/7 Dispatch", description: "Round-the-clock support for your freight." },
|
{
|
||||||
{ title: "Real-time Tracking", description: "Know where your cargo is every second." },
|
title: "24/7 Dispatch", description: "Round-the-clock support for your freight."},
|
||||||
{ title: "Certified Drivers", description: "Experienced professionals behind the wheel." },
|
{
|
||||||
|
title: "Real-time Tracking", description: "Know where your cargo is every second."},
|
||||||
|
{
|
||||||
|
title: "Certified Drivers", description: "Experienced professionals behind the wheel."},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/asian-employees-checking-warehouse-supplies-tablet-files-working-with-storage-room-logistics-young-team-people-using-gadget-papers-business-plan-production_482257-59955.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/asian-employees-checking-warehouse-supplies-tablet-files-working-with-storage-room-logistics-young-team-people-using-gadget-papers-business-plan-production_482257-59955.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -81,9 +89,15 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{ title: "Route Optimization", description: "Advanced planning for faster deliveries.", bentoComponent: "reveal-icon", icon: Zap },
|
{
|
||||||
{ title: "Global Logistics", description: "Connecting your business to the world.", bentoComponent: "reveal-icon", icon: Globe },
|
title: "Route Optimization", description: "Advanced planning for faster deliveries.", bentoComponent: "reveal-icon", icon: Zap
|
||||||
{ title: "Secure Shipping", description: "End-to-end cargo protection.", bentoComponent: "reveal-icon", icon: ShieldCheck },
|
},
|
||||||
|
{
|
||||||
|
title: "Global Logistics", description: "Connecting your business to the world.", bentoComponent: "reveal-icon", icon: Globe
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Secure Shipping", description: "End-to-end cargo protection.", bentoComponent: "reveal-icon", icon: ShieldCheck
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Core Transportation Services"
|
title="Core Transportation Services"
|
||||||
description="From long-haul freight to specialized equipment, we have the capacity to handle your unique logistical challenges."
|
description="From long-haul freight to specialized equipment, we have the capacity to handle your unique logistical challenges."
|
||||||
@@ -97,9 +111,12 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "m1", value: "15K+", description: "Shipments Completed" },
|
{
|
||||||
{ id: "m2", value: "500+", description: "Active Fleet Trucks" },
|
id: "m1", value: "15K+", description: "Shipments Completed"},
|
||||||
{ id: "m3", value: "99.8%", description: "On-time Delivery Rate" },
|
{
|
||||||
|
id: "m2", value: "500+", description: "Active Fleet Trucks"},
|
||||||
|
{
|
||||||
|
id: "m3", value: "99.8%", description: "On-time Delivery Rate"},
|
||||||
]}
|
]}
|
||||||
title="Our Impact in Numbers"
|
title="Our Impact in Numbers"
|
||||||
description="Proven performance and reliability for thousands of satisfied customers across the country."
|
description="Proven performance and reliability for thousands of satisfied customers across the country."
|
||||||
@@ -111,11 +128,16 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", title: "Reliable Partner", quote: "Swift Haul has transformed our supply chain reliability.", name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/man-warehouse-carrying-box_23-2148923107.jpg" },
|
{
|
||||||
{ id: "2", title: "Exceptional Service", quote: "Their team goes above and beyond to meet deadlines.", name: "Sarah Smith", role: "Manager", imageSrc: "http://img.b2bpic.net/free-photo/serious-executive-with-short-hair-crossed-arms_1149-89.jpg" },
|
id: "1", title: "Reliable Partner", quote: "Swift Haul has transformed our supply chain reliability.", name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/man-warehouse-carrying-box_23-2148923107.jpg"},
|
||||||
{ id: "3", title: "Top Tier Logistics", quote: "Communication is excellent, zero issues so far.", name: "Mike Ross", role: "Logistics Lead", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg" },
|
{
|
||||||
{ id: "4", title: "Consistent Quality", quote: "Our goods arrive in perfect condition every time.", name: "Jane Wilson", role: "Supply Chain Head", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman_329181-11722.jpg" },
|
id: "2", title: "Exceptional Service", quote: "Their team goes above and beyond to meet deadlines.", name: "Sarah Smith", role: "Manager", imageSrc: "http://img.b2bpic.net/free-photo/serious-executive-with-short-hair-crossed-arms_1149-89.jpg"},
|
||||||
{ id: "5", title: "Highly Recommend", quote: "Great professional company, dependable partners.", name: "Robert Brown", role: "VP Operations", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-talking_23-2150171290.jpg" },
|
{
|
||||||
|
id: "3", title: "Top Tier Logistics", quote: "Communication is excellent, zero issues so far.", name: "Mike Ross", role: "Logistics Lead", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg"},
|
||||||
|
{
|
||||||
|
id: "4", title: "Consistent Quality", quote: "Our goods arrive in perfect condition every time.", name: "Jane Wilson", role: "Supply Chain Head", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman_329181-11722.jpg"},
|
||||||
|
{
|
||||||
|
id: "5", title: "Highly Recommend", quote: "Great professional company, dependable partners.", name: "Robert Brown", role: "VP Operations", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-talking_23-2150171290.jpg"},
|
||||||
]}
|
]}
|
||||||
title="What Our Partners Say"
|
title="What Our Partners Say"
|
||||||
description="Businesses rely on Swift Haul for consistent performance and professional communication at every stage of the shipping journey."
|
description="Businesses rely on Swift Haul for consistent performance and professional communication at every stage of the shipping journey."
|
||||||
@@ -125,10 +147,12 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{
|
||||||
|
variant: "gradient-bars"}}
|
||||||
text="Ready to move your freight? Contact our dispatch office today for a customized transportation solution."
|
text="Ready to move your freight? Contact our dispatch office today for a customized transportation solution."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Contact Dispatch", href: "mailto:dispatch@swifthaul.com" },
|
{
|
||||||
|
text: "Contact Dispatch", href: "mailto:dispatch@swifthaul.com"},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -138,15 +162,19 @@ export default function LandingPage() {
|
|||||||
logoText="Swift Haul"
|
logoText="Swift Haul"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Legal & Safety", items: [
|
title: "Company", items: [
|
||||||
{ label: "Responsible Gambling", href: "/responsible-gambling" },
|
{
|
||||||
{ label: "Terms and Conditions", href: "/terms" },
|
label: "About", href: "#about"},
|
||||||
|
{
|
||||||
|
label: "Services", href: "#features"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact", href: "/contact" },
|
{
|
||||||
{ label: "Login", href: "/login" },
|
label: "Contact", href: "#contact"},
|
||||||
|
{
|
||||||
|
label: "Privacy Policy", href: "#"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import LegalSection from '@/components/legal/LegalSection';
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
||||||
|
|
||||||
export default function ResponsibleGamblingPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
||||||
<NavbarStyleApple navItems={[{ name: "Home", id: "/" }, { name: "Responsible Gambling", id: "/responsible-gambling" }]} brandName="Swift Haul" />
|
|
||||||
<div className="pt-20">
|
|
||||||
<LegalSection
|
|
||||||
layout="page"
|
|
||||||
title="Responsible Gambling Resources"
|
|
||||||
sections={[
|
|
||||||
{ heading: "Our Commitment", content: { type: "paragraph", text: "We are committed to promoting responsible gaming practices and providing resources to ensure our platform remains safe for everyone." } },
|
|
||||||
{ heading: "Tools for You", content: { type: "list", items: ["Set deposit limits", "Self-exclusion options", "Time management reminders", "Links to support organizations"] } }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import LegalSection from '@/components/legal/LegalSection';
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
||||||
|
|
||||||
export default function TermsPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
||||||
<NavbarStyleApple navItems={[{ name: "Home", id: "/" }, { name: "Terms", id: "/terms" }]} brandName="Swift Haul" />
|
|
||||||
<div className="pt-20">
|
|
||||||
<LegalSection
|
|
||||||
layout="page"
|
|
||||||
title="Terms and Conditions"
|
|
||||||
sections={[
|
|
||||||
{ heading: "Acceptance of Terms", content: { type: "paragraph", text: "By accessing or using our services, you agree to be bound by these terms and conditions." } },
|
|
||||||
{ heading: "Usage Guidelines", content: { type: "numbered-list", items: ["Maintain accurate account information.", "Respect community standards.", "Do not misuse our software or logistics data."] } }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user