Skip to content

Commit 578ccfa

Browse files
committed
logo
1 parent 514d9f6 commit 578ccfa

File tree

12 files changed

+17
-9
lines changed

12 files changed

+17
-9
lines changed

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const Footer: React.FC = () => {
7575
animate={{ rotate: 360 }}
7676
transition={{ duration: 10, repeat: Number.POSITIVE_INFINITY, ease: "linear" }}
7777
>
78-
<Snowflake size={24} className="text-white/60" />
78+
<Snowflake size={48} className="text-white/60" />
7979
</motion.div>
8080
</div>
8181
</div>

components/layout/PageLayout.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,15 @@ function PageLayout({ title = "PWOC | PEC winter of code", children, description
2828
<nav className="relative z-30 px-6 py-4 bg-black/5">
2929
<div className="max-w-7xl mx-auto flex items-center justify-between">
3030
<Link href="/">
31-
<span className="text-[#274495] text-2xl font-bold cursor-pointer">
32-
Winter of Code
33-
</span>
31+
<Image
32+
src="/assets/logo/pwoc_text.png"
33+
alt="Winter of Code"
34+
width={150}
35+
height={40}
36+
className="cursor-pointer"
37+
/>
3438
</Link>
39+
3540
<div className="hidden md:flex items-center space-x-8">
3641
{["Home", "Leaderboard", "Projects", "Graveyard", "Faq"].map((item) => (
3742
<Link key={item} href={item.toLowerCase() === "home" ? "/" : `/${item.toLowerCase()}`}>

pages/index.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ const Home: NextPage = () => {
3232
<nav className="relative z-10 px-6 py-4">
3333
<div className="max-w-7xl mx-auto flex items-center justify-between">
3434
<Link href="/">
35-
<span className="text-[#274495] text-2xl font-bold cursor-pointer">
36-
Winter of Code
37-
</span>
35+
<Image
36+
src="/assets/logo/pwoc_text.png"
37+
alt="Winter of Code"
38+
width={150}
39+
height={40}
40+
className="cursor-pointer"
41+
/>
3842
</Link>
3943
<div className="hidden md:flex items-center space-x-8">
4044
{["Home", "Leaderboard", "Projects", "Graveyard", "Faq"].map((item) => (

public/assets/logo/linux_logo.png

-72.1 KB
Binary file not shown.

public/assets/logo/pwoc_logo.jpg

14.8 KB
Loading

public/assets/logo/pwoc_logo.png

-69 KB
Binary file not shown.
-88.9 KB
Binary file not shown.
-171 KB
Binary file not shown.
2.21 KB
Loading
-11 KB
Binary file not shown.

0 commit comments

Comments
 (0)