Skip to content

Commit cb9b140

Browse files
committed
Updated swag link in constants
1 parent aec6b95 commit cb9b140

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

components/home/Banner.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Link from 'next/link'
2-
import { TICKETS_LINK } from '../../constant/constants'
2+
import { SWAG_LINK, TICKETS_LINK } from '../../constant/constants'
33

44
export const Banner = () => {
55
return (
@@ -54,7 +54,7 @@ export const Banner = () => {
5454
sponsor flutterconke
5555
</Link> */}
5656
<Link
57-
href="https://paystack.shop/dcke-fcke-merch-store"
57+
href={SWAG_LINK}
5858
className="btn-accent mt-3 md:mt-0"
5959
target="_blank"
6060
>

components/layouts/components/NavBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ThemeContext } from '../../../context/ThemeContext'
66
import { Login } from '../../auth/Login'
77
import { ToggleTheme } from './ToggleTheme'
88
// import { PastEventsDropdown } from './PastEventsDropdown'
9-
import { TICKETS_LINK } from '../../../constant/constants'
9+
import { SWAG_LINK } from '../../../constant/constants'
1010
import { PastEventsDropdown } from './PastEventsDropdown'
1111

1212
export const NavBar = () => {
@@ -154,7 +154,7 @@ export const NavBar = () => {
154154
</Link> */}
155155
<Link
156156
className="btn-secondary"
157-
href={TICKETS_LINK}
157+
href={SWAG_LINK}
158158
target="_blank"
159159
rel="noreferrer"
160160
>

constant/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export const TICKETS_LINK = 'https://bit.ly/dcKE2025Tickets'
22
export const CFS_LINK = 'https://bit.ly/dcke25CFP'
3+
export const SWAG_LINK = 'https://paystack.shop/dcke-fcke-merch-store'

0 commit comments

Comments
 (0)