Skip to content

Commit

Permalink
Merge branch 'main' of github.com:nimit9/cms-new into feat/bookmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
nimit9 committed Mar 18, 2024
2 parents d462566 + b7d1ca4 commit 05afa36
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 10 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@auth/prisma-adapter": "^1.0.6",
"@discordjs/core": "^1.1.1",
"@discordjs/next": "^0.1.1-dev.1673526225-a580768.0",
"@icons-pack/react-simple-icons": "^9.4.0",
"@prisma/client": "^5.6.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
Expand Down
104 changes: 98 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/components/landing/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from 'next/link';
import { Instagram, TwitterIcon, Youtube } from 'lucide-react';
import { SiInstagram, SiYoutube, SiX } from '@icons-pack/react-simple-icons';
import Image from 'next/image';
import playstore from '/public/platform/playstore.png';
import Logo from '../logo/logo';
Expand Down Expand Up @@ -56,16 +56,16 @@ const Footer = () => {
<h4 className="text-neutral-200 font-semibold mb-2">Follow us</h4>
<div className="flex gap-x-2">
<Link target="_blank" href={'https://twitter.com/kirat_tw'}>
<TwitterIcon className="text-white hover:text-blue-500" />
<SiX className="text-white hover:text-blue-500" />
</Link>
<Link
target="_blank"
href={'https://www.instagram.com/kirat_ins/'}
>
<Instagram className="text-white hover:text-blue-500" />
<SiInstagram className="text-white hover:text-blue-500" />
</Link>
<Link target="_blank" href={'https://www.youtube.com/@harkirat1'}>
<Youtube className="text-white hover:text-blue-500" />
<SiYoutube className="text-white hover:text-blue-500" />
</Link>
</div>
</div>
Expand Down

0 comments on commit 05afa36

Please sign in to comment.