Update my work content
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 2m59s
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 2m59s
This commit is contained in:
parent
c3795ef7c4
commit
5d5c9732be
@ -2,10 +2,12 @@ import type { Metadata, Viewport } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { ThemeProvider } from "@/components/theme-provider";
|
||||
import "../globals.css";
|
||||
import { ReactElement } from "react";
|
||||
import { ReactElement, ReactNode } from "react";
|
||||
import { TooltipProvider } from "@/components/ui/tooltip";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { NextFont } from "next/dist/compiled/@next/font";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const inter: NextFont = Inter({ subsets: ["latin"] });
|
||||
|
||||
/**
|
||||
* The metadata for this app.
|
||||
@ -37,10 +39,10 @@ export const viewport: Viewport = {
|
||||
const RootLayout = ({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
children: ReactNode;
|
||||
}>): ReactElement => (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
<body className={cn(inter.className, "antialiased")}>
|
||||
<ThemeProvider
|
||||
attribute="class"
|
||||
defaultTheme="dark"
|
||||
|
@ -20,12 +20,12 @@ const projects: Project[] = [
|
||||
startDate: moment([2024, 7, 29]),
|
||||
},
|
||||
{
|
||||
name: "WildNetwork",
|
||||
name: "Tether",
|
||||
description:
|
||||
"WildNetwork is a Minecraft server that contains multiple gamemodes, one of which is Prison, which is the most popular. I first joined the server as a Developer where I would work behind the scenes to create new features, now I'm currently working as a System Administrator.",
|
||||
icon: "https://cdn.rainnny.club/x6m1QENM9gZz.png",
|
||||
link: "https://discord.gg/WildPrison",
|
||||
startDate: moment([2020, 7, 1]),
|
||||
"An API designed to provide real-time access to a user's Discord data.",
|
||||
icon: "https://cdn.rainnny.club/tether.png",
|
||||
link: "https://usetether.rest/user/504147739131641857",
|
||||
startDate: moment([2024, 8, 8]),
|
||||
},
|
||||
{
|
||||
name: "Bonfire",
|
||||
@ -35,6 +35,14 @@ const projects: Project[] = [
|
||||
link: "https://bonfire.wtf",
|
||||
startDate: moment([2024, 3, 30]),
|
||||
},
|
||||
{
|
||||
name: "WildNetwork",
|
||||
description:
|
||||
"WildNetwork is a Minecraft server that contains multiple gamemodes, one of which is Prison, which is the most popular. I first joined the server as a Developer where I would work behind the scenes to create new features, now I'm currently working as a System Administrator.",
|
||||
icon: "https://cdn.rainnny.club/x6m1QENM9gZz.png",
|
||||
link: "https://discord.gg/WildPrison",
|
||||
startDate: moment([2020, 7, 1]),
|
||||
},
|
||||
{
|
||||
name: "Lucity",
|
||||
description:
|
||||
|
Loading…
x
Reference in New Issue
Block a user