Migrate from old project
This commit is contained in:
12
app/legal/imprint/page.tsx
Normal file
12
app/legal/imprint/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import ImprintComp from "@/components/Legal/ImprintComp";
|
||||
|
||||
const ImprintPage = () => {
|
||||
return (
|
||||
<div>
|
||||
<ImprintComp />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ImprintPage;
|
||||
30
app/legal/layout.tsx
Normal file
30
app/legal/layout.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import type {Metadata} from "next";
|
||||
import '../(root)/globals.css';
|
||||
|
||||
import Nav from "@/components/Home/Navbar/Nav";
|
||||
import Footer from "@/components/Home/Footer/Footer";
|
||||
import {ThemeProvider} from "@/components/provider/ThemeProvider";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Rhein Software",
|
||||
description: "Rhein Software Development",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="de">
|
||||
<body className={'${font.className} antialiased'} style={{backgroundColor: "var(--primary-bg)"}}>
|
||||
<ThemeProvider>
|
||||
<Nav/>
|
||||
{children}
|
||||
<Footer/>
|
||||
</ThemeProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
10
app/legal/page.tsx
Normal file
10
app/legal/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
|
||||
const LegalPage = () => {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LegalPage;
|
||||
12
app/legal/privacy/page.tsx
Normal file
12
app/legal/privacy/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import PrivacyComp from "@/components/Legal/PrivacyComp";
|
||||
|
||||
const PrivacyPage = () => {
|
||||
return (
|
||||
<div>
|
||||
<PrivacyComp />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default PrivacyPage;
|
||||
12
app/legal/revocation/page.tsx
Normal file
12
app/legal/revocation/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import RevocationComp from "@/components/Legal/RevocationComp";
|
||||
|
||||
const RevocationPage = () => {
|
||||
return (
|
||||
<div>
|
||||
<RevocationComp />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default RevocationPage;
|
||||
12
app/legal/terms-of-use/page.tsx
Normal file
12
app/legal/terms-of-use/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import TermsOfUseComp from "@/components/Legal/TermsOfUseComp";
|
||||
|
||||
const TermsOfUsePage = () => {
|
||||
return (
|
||||
<div>
|
||||
<TermsOfUseComp/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default TermsOfUsePage;
|
||||
Reference in New Issue
Block a user