feat: prettier init with formatted code files

This commit is contained in:
theoleuthardt 2025-02-07 14:02:04 +01:00
parent 5fcfb7ac40
commit 99ffeeafef
12 changed files with 87 additions and 55 deletions

View file

@ -1,9 +1,9 @@
import Navbar from '../components/Navbar';
import Navbar from "../components/Navbar";
export default function Home() {
return (
<div className="bg-black text-white font-noto">
<Navbar renderHomeLink={false} />
</div>
return (
<div className="bg-black text-white font-noto">
<Navbar renderHomeLink={false} />
</div>
);
}
}