Skip to content

Commit

Permalink
fix: remove reg button on top
Browse files Browse the repository at this point in the history
  • Loading branch information
BRAVO68WEB committed Jan 17, 2024
1 parent 6922889 commit 03bd96d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@
}

.venue-back {
background-image: url("/wow-back.jpg");
background-image: url("/wow-back.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.rcs-back-1 {
background-image: url("/rcs-back1.jpg");
background-image: url("/rcs-back1.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.rcs-back-2 {
background-image: url("/rcs-back2.jpg");
background-image: url("/rcs-back2.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
Expand Down
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const metadata: Metadata = {
canonical: '/'
},
openGraph: {
images: '/banner.png',
images: '/banner.webp',
type: 'website',
locale: 'en_US',
description:
Expand All @@ -48,7 +48,7 @@ export const metadata: Metadata = {
title: 'RCS CTF 2024',
description: 'The "Republic of Cyber Sentinels CTF 2024" (RCSCTF24) is a two-day Capture the Flag (CTF) competition organized by EncryptEdge, scheduled to take place at Lovely Professional University (LPU). The event is set around the theme of the Republic Day of India and is planned for January 26th to 27th, 2024, spanning 24 hours. It is an offline event, held on the LPU campus, and allows teams with a maximum of four members each. Students from universities across India, including LPU students, are invited to participate in this dynamic competition.',
creator: '@Encrypt_Edge',
images: ['https://rcs.encryptedge.in/banner.png'],
images: ['https://rcs.encryptedge.in/banner.webp'],
},
category: 'technology'
}
Expand Down
2 changes: 1 addition & 1 deletion components/Organisers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function Organisers() {
<div key="ee" className="flex flex-col items-center lg:px-5">
<div className="w-full border-primary border-2 overflow-hidden">
<a href='https://fyp.bio/encryptedge'> <img
src="/ee.jpg"
src="/ee.webp"
alt=""
className="w-full h-full object-cover"
/>
Expand Down
4 changes: 2 additions & 2 deletions components/ui/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const Navbar = () => {
{item.name}
</a>
))}
<a
{/* <a
href={'#'}
className={
'px-3 py-2 text-xl flex items-center gap-2 bg-white text-black hover:bg-black hover:text-white hover:border-white hover:ring-1 hover:ring-white focus:ring-1 focus:ring-white hover:rounded-md transition duration-150 ease-in-out'
Expand All @@ -80,7 +80,7 @@ const Navbar = () => {
}
>
Register
</a>
</a> */}
</div>
</div>
</div>
Expand Down

0 comments on commit 03bd96d

Please sign in to comment.