added pages

This commit is contained in:
Proxyy587 2024-06-15 22:54:54 +05:30
parent bad83bec3a
commit 5b86c40756
8 changed files with 33 additions and 5 deletions

7
app/(root)/blog/page.tsx Normal file
View file

@ -0,0 +1,7 @@
import React from "react";
const BlogPage = () => {
return <div>BlogPage</div>;
};
export default BlogPage;

7
app/(root)/docs/page.tsx Normal file
View file

@ -0,0 +1,7 @@
import React from "react";
const Docs = () => {
return <div>Docs</div>;
};
export default Docs;

View file

@ -0,0 +1,7 @@
import React from "react";
const PrivacyPolicy = () => {
return <div>PrivacyPolicy</div>;
};
export default PrivacyPolicy;

7
app/(root)/tos/page.tsx Normal file
View file

@ -0,0 +1,7 @@
import React from "react";
const TermsOfService = () => {
return <div>TermsOfService</div>;
};
export default TermsOfService;

View file

@ -2,6 +2,7 @@ import type { Metadata } from "next";
import { Poppins } from "next/font/google"; import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ThemeProvider } from "@/components/shared/providers/themeprovider"; import { ThemeProvider } from "@/components/shared/providers/themeprovider";
import Navbar from "@/components/shared/Navbar";
const poppins = Poppins({ const poppins = Poppins({
weight: ["400", "600", "700", "900"], weight: ["400", "600", "700", "900"],
@ -27,6 +28,7 @@ export default function RootLayout({
enableSystem enableSystem
disableTransitionOnChange disableTransitionOnChange
> >
<Navbar />
{children} {children}
</ThemeProvider> </ThemeProvider>
</body> </body>

View file

@ -2,13 +2,11 @@ import About from "@/components/shared/About";
import Faq from "@/components/shared/FAQ"; import Faq from "@/components/shared/FAQ";
import Hero from "@/components/shared/Hero"; import Hero from "@/components/shared/Hero";
import HowItWorks from "@/components/shared/HowItWorks"; import HowItWorks from "@/components/shared/HowItWorks";
import Navbar from "@/components/shared/Navbar";
import Newsletter from "@/components/shared/Newsletter"; import Newsletter from "@/components/shared/Newsletter";
const RootPage = () => { const RootPage = () => {
return ( return (
<> <>
<Navbar />
<Hero /> <Hero />
<HowItWorks /> <HowItWorks />
<About /> <About />

View file

@ -49,7 +49,7 @@ const Navbar = () => {
key={label} key={label}
href={href} href={href}
target={target} target={target}
className={`text-[18px] tracking-tight ${ className={`text-[17px] tracking-tight ${
pathname == href ? "bg-accent/40" : "" pathname == href ? "bg-accent/40" : ""
} ${buttonVariants({ } ${buttonVariants({
variant: "ghost", variant: "ghost",

View file

@ -19,7 +19,7 @@ export const NAVBAR = {
}, },
{ {
href: "/blog", href: "/blog",
target: "_blank", target: "_self",
label: "Blog", label: "Blog",
}, },
], ],
@ -113,6 +113,6 @@ export const questions = [
key: "item-6", key: "item-6",
question: "How can I use SVR.JS?", question: "How can I use SVR.JS?",
answer: answer:
"You can <a href='/docs' className='text-white'>read its documentation</a> to learn how to use the SVR.JS web server.", "You can read the documents to learn how to use the SVR.JS web server.",
}, },
]; ];