- Updated project to use Tailwind CSS for styling. - Added new UI components including Navbar, Sidebar, Footer, Accordion, and Button. - Created markdown content page for documentation. - Improved overall structure and design of the application.
10 lines
180 B
Svelte
10 lines
180 B
Svelte
<script lang="ts">
|
|
import Layout from "./components/Layout.svelte";
|
|
import Home from "./components/Home.svelte";
|
|
import "./app.css";
|
|
</script>
|
|
|
|
<Layout>
|
|
<Home />
|
|
</Layout>
|