34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
|
|
# Euastra Homepage
|
|
|
|
The Euastra Homepage is a website designed to showcase our solutions and services. This repository contains the frontend codebase for the official Euastra homepage, built with React, Next.js, and Tailwind CSS for a fast, responsive, and visually appealing UX.
|
|
|
|
## Quick Start
|
|
|
|
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
|
|
|
|
1. **Install dependencies:**
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
2. **Run the development server:**
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
3. **Open the application:**
|
|
Navigate to the localhost URL shown in your terminal with your browser.
|
|
|
|
## 📂 Project Structure
|
|
|
|
```text
|
|
├── public/ # Static assets (images, icons, fonts)
|
|
├── src/
|
|
│ ├── components/ # Reusable UI components
|
|
│ ├── pages/ # Application routes and views
|
|
│ ├── styles/ # Global styles and Tailwind config
|
|
│ └── utils/ # Helper functions and constants
|
|
├── package.json # Project dependencies and scripts
|
|
└── README.md # Project documentation
|