diff --git a/public/cc-logo.png b/public/cc-logo.png new file mode 100644 index 0000000..b89822c Binary files /dev/null and b/public/cc-logo.png differ diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fe..0d23dfd 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee45a33..b27776a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,8 +24,8 @@ const fontBody = Inter({ }) export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Coding Club IIITV", + description: "IIITV Coding Club Blog Website", }; export default function RootLayout({ diff --git a/src/components/footer.jsx b/src/components/footer.jsx index 3aa60a8..4948bfa 100644 --- a/src/components/footer.jsx +++ b/src/components/footer.jsx @@ -25,11 +25,7 @@ function Footer() {
- IIITV Logo + IIITV Logo

Coding Club

Blog Website

@@ -41,7 +37,6 @@ function Footer() {

Links

-
Home @@ -66,7 +61,7 @@ function Footer() { : codingclub@iiitvadodara.ac.in

Phone

- : +98875503111 ,9034534472 + : +919531852385, +919305066259

Address

: c/o Block No. 9, Government Engineering College, Sector 28, Gandhinagar, Gujarat @@ -92,10 +87,10 @@ function Footer() {

Developed by Coding Club

- IIITV Logo
diff --git a/src/components/navbar.jsx b/src/components/navbar.jsx index 3919b09..1c14da4 100644 --- a/src/components/navbar.jsx +++ b/src/components/navbar.jsx @@ -2,6 +2,7 @@ import React, { use, useState } from "react"; import "@/styles/navbar.css"; import Link from "next/link"; +import Image from "next/image"; function Navbar() { const [hiddenMenu,setHiddenMenu] = useState(true); @@ -19,7 +20,7 @@ function Navbar() {
- IIITV Logo + IIITV Logo

Coding Club

diff --git a/src/styles/footer.css b/src/styles/footer.css index ca7e9d4..11f24b0 100644 --- a/src/styles/footer.css +++ b/src/styles/footer.css @@ -26,6 +26,7 @@ } .footer-cc-logo-img{ height: 100px; + width: 100px; } .footer-cc-logo-title{ font-size: 32px; @@ -137,6 +138,7 @@ } .footer-cc-logo-img-2{ height: 35px; + width: 35px; } .footer-container-2-divider{ position: relative; @@ -161,16 +163,30 @@ transform: scale(1.0); } +/* Links on hover style */ +.footer-contact-container>div>*:hover{ + text-decoration: underline; + color: aquamarine; + transition: 0.5s; +} +.footer-links-container>*:not(p):hover{ + text-decoration: underline; + color: aquamarine; + transition: 0.5s; +} + /* Tailwind lg responsiveness */ @media screen and (max-width : 1280px){ .footer-cc-logo-img{ height: 70px; + width: 70px; } } /* Tailwind less than sm size resposiveness */ @media screen and (max-width : 640px){ .footer-cc-logo-img{ height: 60px; + width: 60px; } .footer-cc-logo-title{ font-size: 28px; diff --git a/src/styles/navbar.css b/src/styles/navbar.css index ae761bb..4cc681a 100644 --- a/src/styles/navbar.css +++ b/src/styles/navbar.css @@ -24,7 +24,10 @@ cursor: pointer; transition: transform 0.3s; } -.navbar>*>*:not(.mobile-menu-container):hover{ +.navbar>*>*:not(.mobile-menu-container, .logo-container>*):hover{ + transform: scale(1.05); +} +.mobile-menu-container2>*:hover{ transform: scale(1.05); } .logo-container{ @@ -36,6 +39,7 @@ .logo-img{ height: 50px; + width: 50px; cursor :pointer; }