-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
450e6bd
commit fe8044d
Showing
55 changed files
with
143 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,10 @@ | ||
# Website | ||
run the development server: | ||
|
||
The **[website](https://charliepiper.github.io)** (for ENG1 cohort1/group1) | ||
|
||
|
||
## Project Structure | ||
The project structure is organised as follows: | ||
|
||
``` | ||
ENG1/ | ||
├── src/app/ # Contains Next.js pages | ||
│ ├── page.tsx # Home page | ||
│ ├── layout.tsx # Home page layout | ||
│ | ||
├── src/components/ # Reusable components | ||
│ ├── ContentSection.tsx # Links to documents component | ||
│ ├── DownloadSection.tsx # Game download component | ||
│ ├── Footer.js # Footer component | ||
│ ├── HeroSection.tsx # Hero component | ||
│ ├── Navbar.tsx # Navbar component (both phone and desktop) | ||
│ | ||
├── public/ # Static assets | ||
│ └── ... # Other assets | ||
│ | ||
├── styles/ # Global styles | ||
│ └── globals.css # Global CSS file | ||
│ | ||
├── README.md # Project documentation | ||
├── package.json # Node.js dependencies and scripts | ||
└── ... | ||
```bash | ||
npm install | ||
npm run dev | ||
``` | ||
|
||
## Technologies / Frameworks | ||
|
||
-- **[Next.js](https://nextjs.org)** | ||
|
||
-- **[TailwindCSS](https://tailwindcss.com)** | ||
|
||
|
||
## Setup | ||
|
||
To set up the project locally, follow these steps: | ||
|
||
1. Clone the repository: | ||
```bash | ||
git clone <repository-url> (for now (will change) https://github.com/charliepiper/charliepiper.github.io.git) | ||
``` | ||
|
||
2. Install dependencies: | ||
```bash | ||
npm install | ||
``` | ||
|
||
3. Start the development server: | ||
```bash | ||
npm run dev | ||
``` | ||
|
||
4. Open [http://localhost:3000](http://localhost:3000) in your browser to view the website. | ||
open [http://localhost:3000](http://localhost:3000) with your browser | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
favicon: "/icon.ico", | ||
output: "export", | ||
images: { | ||
unoptimized: true | ||
}, | ||
trailingSlash: true, | ||
} | ||
|
||
module.exports = nextConfig | ||
output: 'export', | ||
} | ||
|
||
module.exports = nextConfig |
Empty file.
Oops, something went wrong.