From b33c2f06a4524bc846e66bbe3abf6428d1cf2305 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 27 Feb 2025 10:42:09 +0100 Subject: Astro project structure --- src/components/Welcome.astro | 209 ------------------------------------- src/layouts/Layout.astro | 22 ---- src/pages/index.astro | 144 ++++++++++++++++++++++++-- src/pages/isometric/index.astro | 221 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 357 insertions(+), 239 deletions(-) delete mode 100644 src/components/Welcome.astro delete mode 100644 src/layouts/Layout.astro create mode 100644 src/pages/isometric/index.astro (limited to 'src') diff --git a/src/components/Welcome.astro b/src/components/Welcome.astro deleted file mode 100644 index 6b7b9c7..0000000 --- a/src/components/Welcome.astro +++ /dev/null @@ -1,209 +0,0 @@ ---- -import astroLogo from '../assets/astro.svg'; -import background from '../assets/background.svg'; ---- - -
- -
-
- Astro Homepage -

- To get started, open the
src/pages
directory in your project. -

- -
-
- - - -

What's New in Astro 5.0?

-

- From content layers to server islands, click to learn more about the new features and - improvements in Astro 5.0 -

-
-
- - diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro deleted file mode 100644 index e455c61..0000000 --- a/src/layouts/Layout.astro +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - Astro Basics - - - - - - - diff --git a/src/pages/index.astro b/src/pages/index.astro index c04f360..0e40b3d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,11 +1,139 @@ --- -import Welcome from '../components/Welcome.astro'; -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. +// Vibes homepage --- - - - + + + + + + Vibes + + + +

Vibes

+ +
+
+
+
+

Isometric Triangles

+

+ A dynamic background with colorful isometric triangles + that rotate and float across the screen. +

+ Go +
+
+
+ + diff --git a/src/pages/isometric/index.astro b/src/pages/isometric/index.astro new file mode 100644 index 0000000..df4ff5d --- /dev/null +++ b/src/pages/isometric/index.astro @@ -0,0 +1,221 @@ +--- +// Isometric Triangles Experiment +--- + + + + + + + Isometric Triangles + + + + +
+

Isometric Triangles

+
+ + + + -- cgit v1.3.1