Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Jun 4, 2024
1 parent e622698 commit 887c724
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 50 deletions.
42 changes: 0 additions & 42 deletions src/App.css

This file was deleted.

14 changes: 6 additions & 8 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
import "./App.css"

function App() {
return (
<div className="flex flex-col min-h-screen">
<header className="bg-blue-500 text-white p-4">
<h1 className="text-2xl">Header</h1>
<header className="p-4">
<h1 className="text-md">kicad viewer</h1>
</header>
<div className="flex flex-1">
<aside className="bg-gray-200 w-1/4 p-4">
<h2 className="text-xl">Sidebar</h2>
<h2 className="text-md">Sidebar</h2>
</aside>
<section className="flex-1 p-4">
<h2 className="text-xl">Content</h2>
<h2 className="text-md">Content</h2>
</section>
</div>
<footer className="bg-blue-500 text-white p-4">
<h2 className="text-xl">Footer</h2>
<footer className="p-4 text-xs text-center">
made with tscircuit & <a href="https://x.com/seveibar">@seveibar</a>
</footer>
</div>
)
Expand Down

0 comments on commit 887c724

Please sign in to comment.