From d19624b4591c0758a402013ce78c1b16e3b1cac6 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 19 Jan 2026 06:39:33 +0000 Subject: [PATCH 1/2] fix: add missing pages and fix footer navigation links - Fix FooterSection.astro links from "#" placeholders to actual page URLs - Create products.astro page with purple theme - Create community.astro page with green theme - Create docs.astro page with light blue theme - Create about.astro page with pink theme - All new pages include responsive mobile styles --- src/components/FooterSection.astro | 10 ++-- src/pages/about.astro | 78 ++++++++++++++++++++++++++++++ src/pages/community.astro | 78 ++++++++++++++++++++++++++++++ src/pages/docs.astro | 78 ++++++++++++++++++++++++++++++ src/pages/products.astro | 78 ++++++++++++++++++++++++++++++ 5 files changed, 317 insertions(+), 5 deletions(-) create mode 100644 src/pages/about.astro create mode 100644 src/pages/community.astro create mode 100644 src/pages/docs.astro create mode 100644 src/pages/products.astro diff --git a/src/components/FooterSection.astro b/src/components/FooterSection.astro index a06dcde..e68a694 100644 --- a/src/components/FooterSection.astro +++ b/src/components/FooterSection.astro @@ -6,11 +6,11 @@ diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..f07b0e6 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,78 @@ +--- +// About Page +import MainLayout from '../layouts/MainLayout.astro'; +--- + + + +
+
+
+
+

+ About AeThex +

+

Building Infrastructure for the Metaverse

+
+
+
+
+

Our Mission

+

AeThex is dedicated to creating the foundational infrastructure that powers the next generation of immersive digital experiences.

+
    +
  • Open-source Foundation
  • +
  • Enterprise Solutions
  • +
  • Research & Innovation
  • +
  • Developer Community
  • +
  • Global Infrastructure
  • +
+
+
+ + +
+
diff --git a/src/pages/community.astro b/src/pages/community.astro new file mode 100644 index 0000000..a5023a3 --- /dev/null +++ b/src/pages/community.astro @@ -0,0 +1,78 @@ +--- +// Community Page +import MainLayout from '../layouts/MainLayout.astro'; +--- + + + +
+
+
+
+

+ Community +

+

Join the AeThex Developer Community

+
+
+
+
+

Get Involved

+

Connect with developers, creators, and enthusiasts building the future of the metaverse.

+
    +
  • Discord Server
  • +
  • Developer Forums
  • +
  • GitHub Discussions
  • +
  • Monthly Meetups
  • +
  • Contributor Program
  • +
+
+
+ + +
+
diff --git a/src/pages/docs.astro b/src/pages/docs.astro new file mode 100644 index 0000000..ba1ca78 --- /dev/null +++ b/src/pages/docs.astro @@ -0,0 +1,78 @@ +--- +// Documentation Page +import MainLayout from '../layouts/MainLayout.astro'; +--- + + + +
+
+
+
+

+ Documentation +

+

Guides, APIs & Technical References

+
+
+
+
+

Developer Resources

+

Everything you need to build with AeThex infrastructure.

+
    +
  • Getting Started Guide
  • +
  • API Reference
  • +
  • SDK Documentation
  • +
  • Tutorials & Examples
  • +
  • Best Practices
  • +
+
+
+ + +
+
diff --git a/src/pages/products.astro b/src/pages/products.astro new file mode 100644 index 0000000..e568d77 --- /dev/null +++ b/src/pages/products.astro @@ -0,0 +1,78 @@ +--- +// Products Page +import MainLayout from '../layouts/MainLayout.astro'; +--- + + + +
+
+
+
+

+ Products +

+

Tools & Services for Metaverse Development

+
+
+
+
+

Our Products

+

Enterprise-grade tools and services built for metaverse creators and developers.

+
    +
  • AeThex Studio IDE
  • +
  • Nexus Engine
  • +
  • Asset Marketplace
  • +
  • Cloud Infrastructure
  • +
  • Analytics Dashboard
  • +
+
+
+ + +
+
From 2d3e505b21575b8419d2bb935f533a531c5f8484 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 19 Jan 2026 06:42:26 +0000 Subject: [PATCH 2/2] docs: update README with project-specific content --- README.md | 81 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 47 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 414a13a..769ba5e 100644 --- a/README.md +++ b/README.md @@ -1,46 +1,59 @@ -# Astro Starter Kit: Basics +# AeThex + +Infrastructure for the Metaverse. + +## About + +AeThex provides foundational infrastructure for building immersive digital experiences. The platform is organized into three divisions: + +- **Foundation** - Open-source tools and community governance +- **Corporation** - Commercial products and enterprise services +- **Labs** - Research & development for experimental technologies + +## Tech Stack + +- [Astro](https://astro.build) - Static site generator +- CSS with custom properties and animations +- Responsive design with mobile-first breakpoints + +## Project Structure -```sh -npm create astro@latest -- --template basics ``` - -> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! - -## 🚀 Project Structure - -Inside of your Astro project, you'll see the following folders and files: - -```text / ├── public/ -│ └── favicon.svg -├── src -│   ├── assets -│   │   └── astro.svg -│   ├── components -│   │   └── Welcome.astro -│   ├── layouts -│   │   └── Layout.astro -│   └── pages -│   └── index.astro +│ └── global.css # Global styles +├── src/ +│ ├── components/ # Reusable UI components +│ ├── layouts/ +│ │ └── MainLayout.astro +│ └── pages/ +│ ├── index.astro # Homepage +│ ├── foundation.astro +│ ├── corporation.astro +│ ├── labs.astro +│ ├── products.astro +│ ├── community.astro +│ ├── docs.astro +│ └── about.astro └── package.json ``` -To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/). +## Development -## 🧞 Commands +```sh +# Install dependencies +npm install -All commands are run from the root of the project, from a terminal: +# Start dev server +npm run dev -| Command | Action | -| :------------------------ | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | +# Build for production +npm run build -## 👀 Want to learn more? +# Preview production build +npm run preview +``` -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). +## License + +© 2026 AeThex