The Immortals Robotics Team is a distinguished Small Size League (SSL) robotics team founded in 2008. With multiple awards in RoboCup competitions, the team continues to push the boundaries of robotic technology and artificial intelligence.
This repository contains the source code for the official Immortals Robotics Team website, built with Astro, a modern static site builder focused on performance.
- 🚀 Fast Performance: Built with Astro for optimal loading speeds
- 📱 Responsive Design: Works on all devices and screen sizes
- 📄 Markdown Content: Easy to update content using markdown files
- 🖼️ Image Optimization: Automatic image optimization
- 🔍 SEO Friendly: Optimized for search engines
- 🏆 Team Achievements: Showcase of competitions and awards
- 📰 News Section: Latest updates and team announcements
- Node.js (v16 or higher)
- npm (comes with Node.js)
-
Clone the repository
git clone https://github.com/yourusername/immortals-site.git cd immortals-site
-
Install dependencies
npm install
-
Start the development server
npm run dev
-
Open your browser and visit
http://localhost:4321
/
├── public/
│ ├── favicon.svg
│ └── assets/ # Images and other static assets
│ ├── logo.png
│ ├── robots.jpeg
│ └── ...
├── src/
│ ├── components/ # Reusable Astro components
│ │ ├── Hero.astro
│ │ └── TeamMember.astro
│ ├── layouts/ # Page layouts
│ │ ├── Layout.astro
│ │ └── MarkdownLayout.astro
│ └── pages/ # Page content
│ ├── index.astro # Home page
│ ├── about.md
│ ├── team.astro
│ ├── achievements.md
│ ├── contact.md
│ └── news/
│ ├── index.astro
│ └── robocup-2023.md
└── package.json # Project dependencies and scripts
All commands are run from the root of the project, from a terminal:
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 Astro CLI commands |
This site uses markdown files for content, making it easy to update. To modify or add content:
- Navigate to the
src/pages
directory - Edit the markdown (.md) or Astro (.astro) files
- For markdown files, use the frontmatter section at the top to set metadata:
--- layout: ../layouts/MarkdownLayout.astro title: Your Page Title description: Page description for SEO --- Your markdown content here
To add a new news article:
- Create a new markdown file in
src/pages/news/
- Use the proper frontmatter format
- Add your article content using markdown
- Place image files in the
public/assets/
directory - Reference them in your markdown with:

- In Astro components, use:
<img src="/assets/your-image.jpg" alt="Description" />
- Use
.jpg
for photos - Use
.png
for graphics with transparency - Use
.svg
for icons and logos when possible - Consider
.webp
for better compression
The site uses:
- Markdown for content pages
- Astro components for layouts and interactive elements
- CSS variables for consistent styling
To change the color scheme, edit the CSS variables in src/layouts/Layout.astro
.
This site is built to be deployed to any static hosting service like Netlify, Vercel, or GitHub Pages.
npm run build
The built site will be in the dist/
directory, ready to be deployed.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
For questions or more information, please contact the Immortals Robotics Team at:
- Email: [email protected]
- Website: immortals-robotics.com
Made with ❤️ by the Immortals Robotics Team