-
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
c9bc46b
commit b943f8d
Showing
31 changed files
with
619 additions
and
690 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,42 @@ | ||
Local dev setup | ||
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). | ||
|
||
1. Install project dependencies | ||
## Getting Started | ||
|
||
``` | ||
npm i | ||
First, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
# or | ||
yarn dev | ||
# or | ||
pnpm dev | ||
# or | ||
bun dev | ||
``` | ||
|
||
2. Create a .env file from the .env.example file | ||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. | ||
|
||
<<<<<<< Updated upstream | ||
``` | ||
cp .env.example .env | ||
npx prisma studio | ||
``` | ||
======= | ||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. | ||
|
||
3. Seed the database | ||
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. | ||
|
||
``` | ||
npm run db:seed | ||
``` | ||
## Learn More | ||
|
||
3. Run the project | ||
To learn more about Next.js, take a look at the following resources: | ||
|
||
``` | ||
npm run dev | ||
``` | ||
- [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. | ||
|
||
Use prisma studio to view the database | ||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! | ||
|
||
``` | ||
npx prisma studio | ||
``` | ||
## 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. | ||
>>>>>>> Stashed changes |
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
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
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,45 +1,51 @@ | ||
"use client"; | ||
|
||
import { FaBlogger, FaDiscord, FaGithub, FaInstagram, FaLinkedin, FaXTwitter } from 'react-icons/fa6'; | ||
import { | ||
FaBlogger, | ||
FaDiscord, | ||
FaGithub, | ||
FaInstagram, | ||
FaLinkedin, | ||
FaXTwitter, | ||
} from "react-icons/fa6"; | ||
|
||
const Footer = () => { | ||
return ( | ||
|
||
<div className="footer flex justify-between items-center w-full px-5 md:px-10 bg-blue-950 text-black"> | ||
<div className="flex justify-center items-center py-5 mx-auto"> | ||
<div className="pr-2"> | ||
<a href="https://www.linkedin.com/company/cyscomvit" target='_blank'> | ||
<FaLinkedin size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://twitter.com/CyscomVit" target='_blank'> | ||
<FaXTwitter size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://instagram.com/cyscomvit" target='_blank'> | ||
<FaInstagram size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://blog.cyscomvit.com" target='_blank'> | ||
<FaBlogger size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://github.com/cyscomvit" target='_blank'> | ||
<FaGithub size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://discord.gg/9RyHCQgjAv" target='_blank'> | ||
<FaDiscord size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
</div> | ||
return ( | ||
<div className="footer flex justify-between items-center w-full px-5 md:px-10 bg-blue-950 text-black"> | ||
<div className="flex justify-center items-center py-5 mx-auto"> | ||
<div className="pr-2"> | ||
<a href="https://www.linkedin.com/company/cyscomvit" target="_blank"> | ||
<FaLinkedin size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://twitter.com/CyscomVit" target="_blank"> | ||
<FaXTwitter size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://instagram.com/cyscomvit" target="_blank"> | ||
<FaInstagram size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://blog.cyscomvit.com" target="_blank"> | ||
<FaBlogger size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://github.com/cyscomvit" target="_blank"> | ||
<FaGithub size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
<div className="md:px-2 px-2 "> | ||
<a href="https://discord.gg/9RyHCQgjAv" target="_blank"> | ||
<FaDiscord size={26} color="#ffffff" /> | ||
</a> | ||
</div> | ||
); | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
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
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 |
---|---|---|
|
@@ -69,3 +69,7 @@ | |
@apply bg-background text-foreground; | ||
} | ||
} | ||
|
||
body { | ||
font-family: Inter !important; | ||
} |
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
Oops, something went wrong.