Add src/app/terms/page.tsx
This commit is contained in:
15
src/app/terms/page.tsx
Normal file
15
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function TermsPage() {
|
||||
return (
|
||||
<ThemeProvider borderRadius="soft">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}]} brandName="Swift Haul" />
|
||||
<div className="pt-32">
|
||||
<LegalSection layout="page" title="Terms of Service" sections={[{heading: "Usage", content: {type: "paragraph", text: "By using our services, you agree to these terms."}}]} />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user