FEAT: Added AGOG Logo to Homepage

This commit is contained in:
evan
2025-01-27 02:42:27 +00:00
parent ff9feaacec
commit 56c462c94b
6 changed files with 22 additions and 16 deletions

View File

@@ -1,7 +0,0 @@
# Flask Backend Variables
FLASK_SECRET_KEY=your_secret_key_here
STRIPE_SECRET_KEY=sk_test_51QikGl...
# React Frontend Variables
VITE_API_URL=http://127.0.0.1:1234
VITE_STRIPE_PUBLISHABLE_KEY=pk_test_51112222...

View File

@@ -1,4 +0,0 @@
# Example frontend variables (for git)
VITE_API_URL=http://127.0.0.1:1234
VITE_STRIPE_PUBLISHABLE_KEY=pk_test_51112223...

View File

@@ -39,6 +39,16 @@
}
}
.agog-text {
background: linear-gradient(to right, #60A5FA, #8B5CF6, #EC4899, #FACC15);
background-clip: text;
}
.agog-text:hover {
background: white;
transition: ease;
}
/*
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;

View File

@@ -0,0 +1,10 @@
const Name = () => {
return (
<div className="flex flex-col justify-center">
<span className="agog-text text-4xl font-bold italic bg-clip-text text-transparent">
AGOG</span>
</div>
)
}
export default Name;

View File

@@ -3,6 +3,7 @@ import Navbar from "../components/Layout/Navbar";
import StreamListRow from "../components/Layout/StreamListRow";
import { useNavigate } from "react-router-dom";
import { useStreams } from "../context/StreamsContext";
import Name from "../components/Layout/Name";
const HomePage: React.FC = () => {
const { featuredStreams, featuredCategories } = useStreams();
@@ -20,6 +21,7 @@ const HomePage: React.FC = () => {
style={{ backgroundImage: "url(/images/background-pattern.svg)" }}
>
<Navbar variant="home" />
<Name></Name>
<StreamListRow
title="Live Now"

View File

@@ -1,5 +0,0 @@
# Example backend variables (for git)
FLASK_SECRET_KEY=your_secret_key_here
STRIPE_SECRET_KEY=sk_test_51112222...
DATABASE_URL=postgresql://user:password@localhost:5432/db_name