Removed unused routes
parent
d167283c9c
commit
ecf83099fc
@ -1,13 +0,0 @@
|
|||||||
export default function AboutLayout({
|
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
||||||
<div className="inline-block max-w-lg text-center justify-center">
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
import { title } from "@/components/primitives";
|
|
||||||
|
|
||||||
export default function AboutPage() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<h1 className={title()}>About</h1>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
export default function BlogLayout({
|
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
||||||
<div className="inline-block max-w-lg text-center justify-center">
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
import { title } from "@/components/primitives";
|
|
||||||
|
|
||||||
export default function BlogPage() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<h1 className={title()}>Blog</h1>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
export default function DocsLayout({
|
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
||||||
<div className="inline-block max-w-lg text-center justify-center">
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
import { title } from "@/components/primitives";
|
|
||||||
|
|
||||||
export default function DocsPage() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<h1 className={title()}>Docs</h1>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
export default function PricingLayout({
|
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
||||||
<div className="inline-block max-w-lg text-center justify-center">
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
import { title } from "@/components/primitives";
|
|
||||||
|
|
||||||
export default function PricingPage() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<h1 className={title()}>Pricing</h1>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue