-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
33 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
import Hero from "./Hero.astro"; | ||
import Values from "./Values.astro"; | ||
import Goals from "./Goals.astro"; | ||
import Roadmap from "./Roadmap.astro"; | ||
--- | ||
|
||
<main class="grid place-items-center"> | ||
<Hero /> | ||
|
||
<div class="prose prose-invert py-16 px-4 max-w-3xl"> | ||
<Values /> | ||
<Goals /> | ||
<Roadmap /> | ||
</div> | ||
</main> |
2 changes: 1 addition & 1 deletion
2
src/components/Roadmap.astro → src/components/home/Roadmap.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
import Layout from "../../layouts/Layout.astro"; | ||
import Home from "../../components/home/Home.astro"; | ||
--- | ||
|
||
<Layout title="aux.computer"> | ||
<Home /> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
import Header from "../components/Header.astro"; | ||
import Hero from "../components/Hero.astro"; | ||
import Values from "../components/Values.astro"; | ||
import Goals from "../components/Goals.astro"; | ||
import Roadmap from "../components/Roadmap.astro"; | ||
--- | ||
|
||
<Layout title="aux.computer"> | ||
<main> | ||
<Header /> | ||
|
||
<div class="grid place-items-center"> | ||
<Hero /> | ||
<div class="prose prose-invert py-16 px-4 max-w-3xl"> | ||
<Values /> | ||
<Goals /> | ||
<Roadmap /> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> | ||
|
||
<style></style> | ||
<meta http-equiv="refresh" content="0;url=/en/" /> |