diff --git a/app/(marketing)/about/page.tsx b/app/(marketing)/about/page.tsx index fc0a9f6..cd1df62 100644 --- a/app/(marketing)/about/page.tsx +++ b/app/(marketing)/about/page.tsx @@ -1,34 +1,61 @@ +import AnimatedHero from '@/components/AnimatedHero'; import Navbar from '@/components/Navbar'; -import Footer from "@/components/Footer"; - +import Footer from '@/components/Footer'; +import ScrollToTop from '@/components/ScrollBtn'; export default function AboutUsPage() { return ( -
+ <> + -
-
-

Introduction

-

Weekend Knocks is an Indian esports startup seeking to transform the ecosystem by nurturing new talent, - fostering community connections, enhancing brand commitments, and redefining league experiences. + {/* Hero */} + + + {/* Content */} +

+
+

Introduction

+

+ Weekend Knocks is an Indian esports startup aiming to transform the ecosystem by discovering and + nurturing new talent, fostering strong community connections, enhancing brand partnerships, and + redefining league experiences.

-

Player-Centric Environment

-

At Weekend Knocks, we prioritize our players above all, creating a player-centric environment that respects and values their contributions. +

+ +
+
+

Player-Centric Environment

+

+ We prioritize our players, creating an environment that respects and values their contributions. + Our programs focus on growth, wellbeing, and professional opportunities. +

+
+ +
+

Talent Scouting & Development

+

+ Through grassroots initiatives, tournaments, and community events, we scout undiscovered talents + and provide training, mentorship, and exposure to help them succeed on bigger stages. +

+
+
+ +
+

Our Mission

+

+ To build a sustainable esports ecosystem that supports players, engages fans, and offers reliable + partnership opportunities for brands and organizers. We believe in transparent, fair competition + and long-term career pathways for gamers.

-

Talent Scouting and Development

- -

We scout undiscovered talents through grassroots initiatives and groom them into icons who knit the gaming world together.

-
- -
- - - + +
- + ); - } diff --git a/components/AnimatedHero.tsx b/components/AnimatedHero.tsx new file mode 100644 index 0000000..d76b0fe --- /dev/null +++ b/components/AnimatedHero.tsx @@ -0,0 +1,32 @@ +"use client"; +import { motion } from 'framer-motion'; +import React from 'react'; + +type Props = { + title: string; + subtitle?: string; + bgUrl?: string; +}; + +export default function AnimatedHero({ title, subtitle, bgUrl }: Props) { + return ( + +
+

{title}

+ {subtitle && ( +

{subtitle}

+ )} +
+
+ ); +} diff --git a/components/ScrollBtn.tsx b/components/ScrollBtn.tsx index 4d67df9..bd49b2a 100644 --- a/components/ScrollBtn.tsx +++ b/components/ScrollBtn.tsx @@ -1,3 +1,5 @@ +"use client"; + import { useEffect, useState } from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faArrowUp } from "@fortawesome/free-solid-svg-icons";