From 8a02f3f3d53f36ce51cde796464ec7a9ccb554b1 Mon Sep 17 00:00:00 2001 From: carsonSgit Date: Tue, 17 Feb 2026 17:03:38 -0500 Subject: [PATCH 1/3] 2027 Prep --- src/app/globals.css | 18 +++++++++++++++ src/app/layout.tsx | 11 ++++++++-- src/app/page.tsx | 2 -- src/components/general/LoadingScreen.tsx | 2 +- src/components/general/Navbar.tsx | 8 +++---- src/components/home/Hero.tsx | 28 ++++++++++++++++++------ 6 files changed, 53 insertions(+), 16 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 341b48e..dd803db 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -18,6 +18,7 @@ --font-jost: var(--font-jost); --font-space-grotesk: var(--font-space-grotesk); + --font-bebas-neue: var(--font-bebas-neue); --text-body: rgba(250, 250, 250, 0.562); --detail-medium-contrast: rgba(89, 83, 172, 0.452); @@ -283,6 +284,23 @@ html { animation: pulse-subtle 5s ease-in-out infinite; } +@keyframes grain-flicker { + 0% { transform: translate(0, 0); } + 10% { transform: translate(-3%, -4%); } + 20% { transform: translate(4%, 2%); } + 30% { transform: translate(-1%, 5%); } + 40% { transform: translate(3%, -2%); } + 50% { transform: translate(-4%, 3%); } + 60% { transform: translate(2%, -4%); } + 70% { transform: translate(-2%, 2%); } + 80% { transform: translate(4%, -3%); } + 90% { transform: translate(-1%, 4%); } +} + +.cta-border-spin { + background: conic-gradient(from 90deg at 50% 50%, #04000f 0%, #dadada 20%, #905aee 70%, #04000f 100%); +} + .animate-sparkle-1 { animation: sparkle-1 8s ease-in-out infinite; } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 967eb0e..ad36b5c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,7 @@ import type { Metadata } from "next"; import "./globals.css"; import connectMongoDB from "@/lib/mongodb"; -import { Jost, Space_Grotesk } from "next/font/google"; +import { Jost, Space_Grotesk, Bebas_Neue } from "next/font/google"; import { Analytics } from "@vercel/analytics/next"; import { SpeedInsights } from "@vercel/speed-insights/next"; @@ -19,6 +19,13 @@ const spaceGrotesk = Space_Grotesk({ display: "swap", }); +const bebasNeue = Bebas_Neue({ + subsets: ["latin"], + weight: "400", + variable: "--font-bebas-neue", + display: "swap", +}); + import { config } from "@fortawesome/fontawesome-svg-core"; import "@fortawesome/fontawesome-svg-core/styles.css"; config.autoAddCss = false; @@ -108,7 +115,7 @@ export default function RootLayout({ diff --git a/src/app/page.tsx b/src/app/page.tsx index 4787f3d..1d835f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,6 @@ import { Hero, OceanSurface, Particles, - LoadingScreen, SmoothFollower, Navbar, About, @@ -19,7 +18,6 @@ const Home = () => { return (
-
diff --git a/src/components/general/LoadingScreen.tsx b/src/components/general/LoadingScreen.tsx index b10d75b..1ac2155 100644 --- a/src/components/general/LoadingScreen.tsx +++ b/src/components/general/LoadingScreen.tsx @@ -55,7 +55,7 @@ export default function LoadingScreen() { // checks if we need to show splashpage (only shows on intial load) if (typeof window !== "undefined") { const splashShown = sessionStorage.getItem("splashShown"); - if (!splashShown) { + if (false) { // if (!splashShown) setShowSplash(true); sessionStorage.setItem("splashShown", "true"); lockScroll(); diff --git a/src/components/general/Navbar.tsx b/src/components/general/Navbar.tsx index 6b48c73..a1f9e77 100644 --- a/src/components/general/Navbar.tsx +++ b/src/components/general/Navbar.tsx @@ -14,12 +14,12 @@ const Navbar: React.FC = () => { // Filter nav items based on enabled features const navItems: Record = { - Home: "/#Hero", + // Home: "/#Hero", About: "/#About", - Gallery: "/#Gallery", + // Gallery: "/#Gallery", Sponsors: "/#Sponsors", - Pricing: "/#Pricing", - Faq: "/#Faq", + // Pricing: "/#Pricing", + // Faq: "/#Faq", Speakers: "/speakers", "The Team": "/team", }; diff --git a/src/components/home/Hero.tsx b/src/components/home/Hero.tsx index 6e367a3..54373c9 100644 --- a/src/components/home/Hero.tsx +++ b/src/components/home/Hero.tsx @@ -2,11 +2,6 @@ import React from "react"; import Image from "next/image"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { faMicrophone } from "@fortawesome/free-solid-svg-icons"; -import { faUserPlus } from "@fortawesome/free-solid-svg-icons"; -import { faArrowUpRightFromSquare } from "@fortawesome/free-solid-svg-icons"; -import Link from "next/link"; const Hero: React.FC = () => { return ( @@ -60,7 +55,7 @@ const Hero: React.FC = () => {
- ); From f61a3c1bc1ed0945085bc50b628a8e8b0c3c19e3 Mon Sep 17 00:00:00 2001 From: carsonSgit Date: Tue, 17 Feb 2026 17:07:33 -0500 Subject: [PATCH 2/3] clean --- src/app/globals.css | 15 +-------------- src/components/home/Hero.tsx | 5 +---- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index dd803db..110beb1 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -284,21 +284,8 @@ html { animation: pulse-subtle 5s ease-in-out infinite; } -@keyframes grain-flicker { - 0% { transform: translate(0, 0); } - 10% { transform: translate(-3%, -4%); } - 20% { transform: translate(4%, 2%); } - 30% { transform: translate(-1%, 5%); } - 40% { transform: translate(3%, -2%); } - 50% { transform: translate(-4%, 3%); } - 60% { transform: translate(2%, -4%); } - 70% { transform: translate(-2%, 2%); } - 80% { transform: translate(4%, -3%); } - 90% { transform: translate(-1%, 4%); } -} - .cta-border-spin { - background: conic-gradient(from 90deg at 50% 50%, #04000f 0%, #dadada 20%, #905aee 70%, #04000f 100%); + background: conic-gradient(from 90deg at 50% 50%, #04000f 0%, #dadadaa9 35%, #905aee 40%, #04000f 100%); } .animate-sparkle-1 { diff --git a/src/components/home/Hero.tsx b/src/components/home/Hero.tsx index 54373c9..a8144a0 100644 --- a/src/components/home/Hero.tsx +++ b/src/components/home/Hero.tsx @@ -102,14 +102,11 @@ const Hero: React.FC = () => { target="_blank" rel="noopener noreferrer" > - {/* Spinning conic gradient — visible only as the 1.5px border */}