diff --git a/public/images/mascot.png b/public/images/mascot.png new file mode 100644 index 0000000..bf78438 Binary files /dev/null and b/public/images/mascot.png differ diff --git a/src/common/components/Footer/Footer.module.css b/src/common/components/Footer/Footer.module.css index a7eb7e6..6446741 100644 --- a/src/common/components/Footer/Footer.module.css +++ b/src/common/components/Footer/Footer.module.css @@ -23,27 +23,27 @@ width: 33%; } -.playerTwo > h4, -.company > h4, -.social > h4 { +.playerTwo>h4, +.company>h4, +.social>h4 { font-size: 25px; font-family: poppins; color: #ffffff; cursor: pointer; } -.playerTwo > p { +.playerTwo>p { margin-top: 10px; line-height: 1.6; font-weight: 500; cursor: pointer; } -.company > ul { +.company>ul { list-style-type: none; } -.company > ul > li { +.company>ul>li { margin-top: 10px; font-weight: 600; cursor: pointer; @@ -58,3 +58,23 @@ width: 150%; cursor: pointer; } + +.footer__rights { + text-align: center; + margin-top: 10px; +} + +.footer__attribution { + text-align: center; + margin-top: 5px; + padding-bottom: 10px; + display: flex; + justify-content: center; + align-items: center; +} + +.footer__attribution p { + color: #ddd; + font-size: 14px; + font-weight: 500; +} \ No newline at end of file diff --git a/src/common/components/Footer/Footer.tsx b/src/common/components/Footer/Footer.tsx index 1fdaa77..1cc286d 100644 --- a/src/common/components/Footer/Footer.tsx +++ b/src/common/components/Footer/Footer.tsx @@ -1,16 +1,16 @@ import styles from './Footer.module.css'; -import {AiFillTwitterCircle, AiFillLinkedin} from 'react-icons/ai'; -import {BsInstagram, BsFacebook} from 'react-icons/bs'; +import { AiFillTwitterCircle, AiFillLinkedin } from 'react-icons/ai'; +import { BsInstagram, BsFacebook, BsLightningFill } from 'react-icons/bs'; export default function Footer() { return (
-

Canonforces

+

CanonForces

{' '} - A paltform where you can showcase your codeforces profile in a more elegant way. + A platform where you can showcase your Codeforces profile in a more elegant way. You can compete with other coders in a 1v1 match and improve your profile.{' '}

@@ -32,9 +32,15 @@ export default function Footer() {
-
+
-

@2022 Canonforces Pvt. Ltd. All Rights Reserved

+

© 2025 CanonForces. All Rights Reserved

+
+
+

+ + Maintained by Aviral Saxena +

); diff --git a/src/common/components/Header/Header.tsx b/src/common/components/Header/Header.tsx index ef4a666..dc8f685 100644 --- a/src/common/components/Header/Header.tsx +++ b/src/common/components/Header/Header.tsx @@ -1,28 +1,23 @@ import Head from "next/head"; import Link from "next/link"; import * as ROUTES from "../../../constants/routes"; -import NotificationBell from "../NotificationBell/NotificationBell"; import styles from "./Header.module.css"; export default function Header() { return ( <>
-