File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/* eslint-disable @next/next/no-img-element */
22"use client" ;
33
4+ import SetColor from "@/components/SetColor" ;
45import Link from "next/link" ;
56
67export default function ActualAbout ( ) {
78 return (
89 < div className = "flex flex-col items-center gap-5" >
10+ < SetColor />
911 < h1 className = "text-5xl text-primary overflow-hidden" > About me</ h1 >
1012 < h2 className = "justify-center text-3xl w-fit text-secondary overflow-hidden" >
1113 (for real this time)
Original file line number Diff line number Diff line change 11"use client" ;
22
3+ import SetColor from "@/components/SetColor" ;
34import Link from "next/link" ;
45
56export default function About ( ) {
67 return (
78 < div className = "flex flex-col items-center gap-5" >
9+ < SetColor />
810 < h1 className = "text-5xl text-primary overflow-hidden" > About me</ h1 >
911 < h2 className = "justify-center text-3xl w-fit text-secondary overflow-hidden" >
1012 i am probably a human person
Original file line number Diff line number Diff line change 11"use client" ;
22
33import GamesButton from "@/components/GamesButton" ;
4+ import SetColor from "@/components/SetColor" ;
45import { useSearchParams } from "next/navigation" ;
56
67export default function GamesClient ( ) {
@@ -13,6 +14,7 @@ export default function GamesClient() {
1314 } else {
1415 return (
1516 < div className = "flex flex-col items-center gap-5" >
17+ < SetColor />
1618 < h1 className = "justify-center text-7xl w-fit text-primary overflow-hidden" >
1719 Games
1820 </ h1 >
Original file line number Diff line number Diff line change 1- import SetColor from "@/components/SetColor" ;
21import SwitcherLink from "@/components/SwitcherLink" ;
32import { Metadata } from "next" ;
43import "./globals.css" ;
@@ -16,7 +15,6 @@ export default function RootLayout({
1615 return (
1716 < html lang = "en" >
1817 < body className = "antialiased flex flex-col min-h-screen" >
19- < SetColor />
2018 < header className = "backdrop-blur-3xl border-b sticky top-0 min-w-full z-100" >
2119 < nav className = "flex gap-10 h-10 justify-center" >
2220 < SwitcherLink to = "" name = "Home" > </ SwitcherLink >
Original file line number Diff line number Diff line change 11"use client" ;
22
3+ import SetColor from "@/components/SetColor" ;
34import { useEffect , useRef , useState } from "react" ;
45
56const splashArray : Array < string > = [
@@ -106,6 +107,7 @@ export default function Home() {
106107
107108 return (
108109 < div className = "flex flex-col items-center gap-5" >
110+ < SetColor />
109111 < h1 className = "justify-center text-7xl w-fit text-primary overflow-hidden font-fancy" >
110112 Precontation
111113 </ h1 >
You can’t perform that action at this time.
0 commit comments