A bunch of shit

This commit is contained in:
MotorTruck1221
2025-03-17 23:32:14 -06:00
parent 6b09a5350e
commit 19e6beaec4
12 changed files with 1042 additions and 27 deletions
View File
-1
View File
@@ -1 +0,0 @@
+8 -3
View File
@@ -1,3 +1,6 @@
---
import "@styles/global.css";
---
<!doctype html>
<html lang="en">
<head>
@@ -5,10 +8,12 @@
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
<title>Radius</title>
</head>
<body>
<slot />
<body class="h-full">
<div class="h-full w-full fixed">
<slot />
</div>
</body>
</html>
+5 -2
View File
@@ -1,4 +1,7 @@
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';
import Layout from '@layouts/Layout.astro';
---
<Layout>
<h1> E </h1>
</Layout>
+1
View File
@@ -0,0 +1 @@
@import "tailwindcss";
View File