diff --git a/README.md b/README.md index 965a122..71e83e0 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,7 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +The codebase for the official Nebula Labs website\(v2\). -## Getting Started +Built with Next.js, React, & Tailwind -First, run the development server: +## Development Guide -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. - -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. - -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +Clone the repo, run `pnpm install` and start the dev server with `pnpm run dev` to start a dev server on localhost:3000 diff --git a/public/arrow-black.svg b/public/arrow-black.svg deleted file mode 100644 index 6453d74..0000000 --- a/public/arrow-black.svg +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/public/arrow-white.svg b/public/arrow.svg similarity index 100% rename from public/arrow-white.svg rename to public/arrow.svg diff --git a/public/github-black.svg b/public/github-black.svg deleted file mode 100644 index c59eb64..0000000 --- a/public/github-black.svg +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/public/github-white.svg b/public/github.svg similarity index 100% rename from public/github-white.svg rename to public/github.svg diff --git a/public/instagram-black.svg b/public/instagram-black.svg deleted file mode 100644 index 4b34256..0000000 --- a/public/instagram-black.svg +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/public/instagram-white.svg b/public/instagram.svg similarity index 100% rename from public/instagram-white.svg rename to public/instagram.svg diff --git a/public/join-discord-black.svg b/public/join-discord-black.svg deleted file mode 100644 index d4cc55f..0000000 --- a/public/join-discord-black.svg +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/public/join-discord-white.svg b/public/join-discord.svg similarity index 100% rename from public/join-discord-white.svg rename to public/join-discord.svg diff --git a/public/linkedin-black.svg b/public/linkedin-black.svg deleted file mode 100644 index 7cac557..0000000 --- a/public/linkedin-black.svg +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/public/linkedin-white.svg b/public/linkedin.svg similarity index 100% rename from public/linkedin-white.svg rename to public/linkedin.svg diff --git a/public/logo-name-black.svg b/public/logo-name-black.svg deleted file mode 100644 index 97b516f..0000000 --- a/public/logo-name-black.svg +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/public/logo-name-white.svg b/public/logo-name.svg similarity index 100% rename from public/logo-name-white.svg rename to public/logo-name.svg diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index a91dc0d..50b787a 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -3,43 +3,16 @@ import Link from 'next/link'; const linkClasses = 'underline decoration-transparent hover:decoration-inherit transition'; -interface FooterProps { - royalBg?: Boolean; -} - -const Footer = (props: FooterProps) => { - const { royalBg = true } = props; - const color = royalBg ? 'white' : 'black'; - +const Footer = () => { return ( -
-