Deleted unused test page from early in development

This commit is contained in:
Andreas 2024-06-28 09:19:26 +02:00
parent 51c9c1f4f3
commit 7b4bdb7b97
3 changed files with 0 additions and 57 deletions

View File

@ -1,7 +0,0 @@
main{
display:flex;
flex-direction: column;
padding:8px;
flex-grow: 1;
gap:8px;
}

View File

@ -1,21 +0,0 @@
// import "public/globals.css"
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'], fallback: ['system-ui', 'arial'] })
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
}

View File

@ -1,29 +0,0 @@
import Header from "@/components/header";
import PageContainer from "@/components/shared/page-container";
import Navbar from "@/components/navbar";
import Sidebar from "@/components/shared/sidebar";
import ArticlePreview from "@/components/news/article-preview"
import ReactDOM from "react";
import "public/global.css"
import "./index.css"
export default function Test() {
return <div className={`root`}>
<Header/>
<Navbar/>
<PageContainer>
<Sidebar>
<h1>
Filters
</h1>
<ul><li>filter 1</li><li>filter 2</li><li>filter 3</li></ul>
</Sidebar>
<main>
<ArticlePreview/>
<ArticlePreview/>
<ArticlePreview/>
</main>
</PageContainer>
</div>;
}