first deploy with astro
This commit is contained in:
14
eduseg/src/pages/index.astro
Normal file
14
eduseg/src/pages/index.astro
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
import "../styles/global.css";
|
||||
import Welcome from "../components/Welcome.astro";
|
||||
import { Regular as Logo } from "../components/Logo.jsx";
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
|
||||
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
|
||||
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Logo className="w-36" />
|
||||
<Welcome />
|
||||
</Layout>
|
||||
Reference in New Issue
Block a user