- Created project structure with necessary directories and files - Set up Next.js with Tailwind CSS and Font Awesome - Added base HTML structure and layout components - Configured routing and created the homepage - Styled the homepage with basic styling - Added FontAwesome icons - Configured font imports and styles - Integrated HackClub branding elements This commit establishes the foundation for our website, including the project structure, styling, and initial content.
36 lines
970 B
JSON
36 lines
970 B
JSON
{
|
|
"name": "site",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "^6.4.2",
|
|
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
"@headlessui/react": "^1.7.17",
|
|
"@headlessui/tailwindcss": "^0.2.0",
|
|
"@types/node": "20.5.8",
|
|
"@types/react": "18.2.21",
|
|
"@types/react-dom": "18.2.7",
|
|
"autoprefixer": "10.4.15",
|
|
"eslint": "8.48.0",
|
|
"eslint-config-next": "13.4.19",
|
|
"next": "13.4.19",
|
|
"postcss": "8.4.29",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"tailwindcss": "3.3.3",
|
|
"typescript": "5.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-tailwindcss": "^0.5.4"
|
|
}
|
|
}
|