Skip to content

Commit 85cb7c3

Browse files
author
SupKittyMeow
committed
whatever this is good enough
1 parent 0b579cd commit 85cb7c3

5 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/app/about/actual/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/* eslint-disable @next/next/no-img-element */
22
"use client";
33

4+
import SetColor from "@/components/SetColor";
45
import Link from "next/link";
56

67
export 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)

src/app/about/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
"use client";
22

3+
import SetColor from "@/components/SetColor";
34
import Link from "next/link";
45

56
export 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

src/app/games/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"use client";
22

33
import GamesButton from "@/components/GamesButton";
4+
import SetColor from "@/components/SetColor";
45
import { useSearchParams } from "next/navigation";
56

67
export 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>

src/app/layout.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import SetColor from "@/components/SetColor";
21
import SwitcherLink from "@/components/SwitcherLink";
32
import { Metadata } from "next";
43
import "./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>

src/app/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client";
22

3+
import SetColor from "@/components/SetColor";
34
import { useEffect, useRef, useState } from "react";
45

56
const 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>

0 commit comments

Comments
 (0)