mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: startpage done, needed components implemented, first tool began
This commit is contained in:
parent
6da16f3858
commit
448065c715
6 changed files with 83 additions and 27 deletions
17
src/app/file-to-pdf/page.tsx
Normal file
17
src/app/file-to-pdf/page.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import Navbar from "../../components/Navbar";
|
||||
import Footer from "../../components/Footer";
|
||||
import Button from "@/components/Button";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="h-screen w-screen bg-black text-white font-noto flex flex-col items-center">
|
||||
<Navbar renderHomeLink={true} />
|
||||
<div className="w-screen h-screen flex flex-col items-center justify-center">
|
||||
<h2 className="text-5xl font-bold text-white mb-16">file-to-pdf</h2>
|
||||
<input type="file" className="bg-gray-800 text-white p-2 rounded-lg" />
|
||||
<Button content="convert" className="text-" />
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue