Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ace-vsit/hack-vsit5

Hack-Vsit website 2023
https://github.com/ace-vsit/hack-vsit5

astro

Last synced: 1 day ago
JSON representation

Hack-Vsit website 2023

Awesome Lists containing this project

README

        

# Hack Vsit 5.0

ACE - The Association of Computer Enthusiasts, presents the 5th edition of HackVSIT. We at ACE believe in encouraging the growing talent and by HackVSIT we bring together, people with different outlook and solutions for already existing problems using technology and design. For 24 hours, you will work together with your teams to envision and develop the technology of tomorrow for solving the problems of today.

## πŸš€ Quick start

- **Clone the repo.**

```shell
git clone
```

- **Start developing.**

Navigate into your new site’s directory and start it up.

```shell
cd hackvsit-5.0/
npm install
npm run dev
```

- **Open the source code and start editing!**

Your site is now running at `http://localhost:4321`!
Open the `hackvsit-5.0` directory in your code editor of choice and edit `src/pages/index.astro`. Save your changes and the browser will update in real time!

## 🧞 Commands

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 CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## Directory Structure

```text
β”œβ”€β”€ README.md
β”œβ”€β”€ src
β”‚Β Β  β”œβ”€β”€ assets
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Ace-logo-large.svg
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ discord.svg
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ hackVsit.svg
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ lines.svg
β”‚Β Β  β”‚Β Β  └── navbar.svg
β”‚Β Β  β”œβ”€β”€ components
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ card
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Card.astro
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── MembersCard.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Faq.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Faqs.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ graphics
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Graphics.astro
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── Line.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Hero.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Info.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Judge.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Sponsors.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Team.astro
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Timeline.astro
β”‚Β Β  β”‚Β Β  └── ui
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Footer.astro
β”‚Β Β  β”‚Β Β  └── Navbar.astro
β”‚Β Β  β”œβ”€β”€ env.d.ts
β”‚Β Β  β”œβ”€β”€ layouts
β”‚Β Β  β”‚Β Β  └── Layout.astro
β”‚Β Β  └── pages
β”‚Β Β  β”œβ”€β”€ 404.astro
β”‚Β Β  └── index.astro
|── public
β”‚Β Β  β”œβ”€β”€ Ace-logo-large.svg
β”‚Β Β  β”œβ”€β”€ add.svg
β”‚Β Β  β”œβ”€β”€ close.svg
β”‚Β Β  β”œβ”€β”€ cover.jpg
β”‚Β Β  β”œβ”€β”€ cubes.svg
β”‚Β Β  β”œβ”€β”€ cube.svg
β”‚Β Β  β”œβ”€β”€ Devfolio.png
β”‚Β Β  β”œβ”€β”€ discord.svg
β”‚Β Β  β”œβ”€β”€ favicon.png
β”‚Β Β  β”œβ”€β”€ footer-line.svg
β”‚Β Β  β”œβ”€β”€ Hack.svg
β”‚Β Β  β”œβ”€β”€ hackVsit.svg
β”‚Β Β  β”œβ”€β”€ hamburgermenu.svg
β”‚Β Β  β”œβ”€β”€ judge
β”‚Β Β  β”œβ”€β”€ linesMobile.svg
β”‚Β Β  β”œβ”€β”€ lines.svg
β”‚Β Β  β”œβ”€β”€ navbar.svg
β”‚Β Β  β”œβ”€β”€ NewLogo.svg
β”‚Β Β  β”œβ”€β”€ socials
β”‚Β Β  β”œβ”€β”€ sponsors
β”‚Β Β  └── VSIT.svg
|── tsconfig.json
β”œβ”€β”€ package.json
└── pnpm-lock.yaml

```