├── .eslintrc.json ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── dev-meetup-v2.tsx ├── faq │ └── page.tsx ├── layout.tsx ├── not-found.tsx └── page.tsx ├── assets ├── Image │ ├── V2.jpg │ ├── hahucloud-logo.png │ ├── highlighted.jpg │ ├── pic1.jpg │ ├── pic2.jpg │ ├── pic3.jpg │ ├── pic4.jpg │ ├── pic5.jpg │ ├── pic6.jpg │ ├── pic7.jpg │ └── pic8.jpg ├── Logo.tsx └── icons │ ├── MoonIcon.tsx │ └── SunIcon.tsx ├── components.json ├── components ├── Contributors.tsx ├── FAQSingleCard.tsx ├── Meta │ └── Meta.tsx ├── PageHead.tsx ├── StickyBottomBanner.tsx ├── button │ ├── IconButton.tsx │ └── ThemeButton.tsx ├── nav │ ├── MobileNavItem.tsx │ ├── Nav.tsx │ └── NavItem.tsx └── ui │ └── button.tsx ├── data └── index.ts ├── index.d.ts ├── lib └── utils.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx └── dev-meetup-v2.tsx ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── big-banner.png ├── favicon.ico ├── logo-big.jpg ├── logo.png ├── next.svg ├── thirteen.svg └── vercel.svg ├── rome.json ├── styles └── globals.css ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CodeNight Website 2 | -------------------------------------------------------------------------------- /app/dev-meetup-v2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/app/dev-meetup-v2.tsx -------------------------------------------------------------------------------- /app/faq/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/app/faq/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/app/page.tsx -------------------------------------------------------------------------------- /assets/Image/V2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/V2.jpg -------------------------------------------------------------------------------- /assets/Image/hahucloud-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/hahucloud-logo.png -------------------------------------------------------------------------------- /assets/Image/highlighted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/highlighted.jpg -------------------------------------------------------------------------------- /assets/Image/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic1.jpg -------------------------------------------------------------------------------- /assets/Image/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic2.jpg -------------------------------------------------------------------------------- /assets/Image/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic3.jpg -------------------------------------------------------------------------------- /assets/Image/pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic4.jpg -------------------------------------------------------------------------------- /assets/Image/pic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic5.jpg -------------------------------------------------------------------------------- /assets/Image/pic6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic6.jpg -------------------------------------------------------------------------------- /assets/Image/pic7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic7.jpg -------------------------------------------------------------------------------- /assets/Image/pic8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Image/pic8.jpg -------------------------------------------------------------------------------- /assets/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/Logo.tsx -------------------------------------------------------------------------------- /assets/icons/MoonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/icons/MoonIcon.tsx -------------------------------------------------------------------------------- /assets/icons/SunIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/assets/icons/SunIcon.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components.json -------------------------------------------------------------------------------- /components/Contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/Contributors.tsx -------------------------------------------------------------------------------- /components/FAQSingleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/FAQSingleCard.tsx -------------------------------------------------------------------------------- /components/Meta/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/Meta/Meta.tsx -------------------------------------------------------------------------------- /components/PageHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/PageHead.tsx -------------------------------------------------------------------------------- /components/StickyBottomBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/StickyBottomBanner.tsx -------------------------------------------------------------------------------- /components/button/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/button/IconButton.tsx -------------------------------------------------------------------------------- /components/button/ThemeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/button/ThemeButton.tsx -------------------------------------------------------------------------------- /components/nav/MobileNavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/nav/MobileNavItem.tsx -------------------------------------------------------------------------------- /components/nav/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/nav/Nav.tsx -------------------------------------------------------------------------------- /components/nav/NavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/nav/NavItem.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/data/index.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.jpg"; 2 | -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/dev-meetup-v2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/pages/dev-meetup-v2.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/big-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/big-banner.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/logo-big.jpg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/rome.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeNight-Ethiopia/codenight-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------