commit working state

This commit is contained in:
2024-04-15 11:38:40 +02:00
parent 89f3f86c54
commit 508258bf0f
33 changed files with 1130 additions and 221 deletions
+4 -3
View File
@@ -4,10 +4,11 @@ import Navbar from "@/components/navbar";
import Sidebar from "@/components/sidebar";
import ArticlePreview from "@/components/news/article-preview"
import ReactDOM from "react";
import "public/global.css"
import "/public/global.css"
import "./index.css"
import { Post, PostAttributes } from "@/model/sequelize/NewModels";
import { constructAPIUrl } from "@/util/Utils";
import Link from "next/link";
type DeepPartial<T> = T extends object ? {
[P in keyof T]?: DeepPartial<T[P]>;
@@ -23,12 +24,12 @@ export default async function Test() {
<Header/>
<Navbar/>
<PageContainer>
<Sidebar>
{/* <Sidebar>
<h1>
Filters
</h1>
<ul><li>filter 1</li><li>filter 2</li><li>filter 3</li></ul>
</Sidebar>
</Sidebar> */}
<main>
{articles.map((article, i) => {
console.log("Entered");