diff --git a/app/layout.tsx b/app/layout.tsx
index c817cd3..3222d57 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, JetBrains_Mono } from "next/font/google";
import "./globals.css";
-import { ThemeProvider } from "@/components/theme-provider"
+import { ThemeProvider } from "@/components/theme-provider";
const jetbrainsMono = JetBrains_Mono({subsets:['latin'],variable:'--font-sans'});
diff --git a/app/page.tsx b/app/page.tsx
index c46f5b5..cea022d 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -3,7 +3,7 @@ import { Card, CardDescription, CardFooter, CardHeader, CardTitle } from "@/comp
import { Button } from "@/components/ui/button";
import Image from "next/image";
import Link from "next/link";
-import { ExternalLink } from "lucide-react";
+import { ExternalLink, Github } from "lucide-react";
import { Suspense } from "react";
import { Wakatime } from "@/components/wakatime";
import { MyBarChartSkeleton } from "@/components/bar-chart";
@@ -12,7 +12,40 @@ import { WakatimeHint } from "@/components/wakatime-hint";
export default function Page() {
return <>
alixz.ovh
+
Editing and programming are what makes my kokoro go dokidoki :-)
+
+
+
+
+
+
+
Projects
+
+
+
+ uwu2x
+
+ An After Effects extension that improves the quality and the smoothness of clips, similar to what Topaz and Flowframes do, but in one click !
+
+ Used by 7000 people every month, and seen +300,000 times on Youtube.
+
+
-
-
-
- uwu2x
-
- An After Effects extension that improves the quality and the smoothness of clips, similar to what Topaz and Flowframes do, but in one click !
-
- Used by 7000 people every month, and seen +300,000 times on Youtube.
-
-
-
-
-
-
-
-
-
-
-
>;
}
\ No newline at end of file
diff --git a/components/bar-chart.tsx b/components/bar-chart.tsx
index c4d1070..d99e1a5 100644
--- a/components/bar-chart.tsx
+++ b/components/bar-chart.tsx
@@ -1,12 +1,12 @@
"use client"
-import { Bar, BarChart, LabelList, XAxis, YAxis, Cell } from "recharts"
-import { cn } from "@/lib/utils"
+import { Bar, BarChart, LabelList, XAxis, YAxis, Cell } from "recharts";
+import { cn } from "@/lib/utils";
import {
ChartContainer,
type ChartConfig,
-} from "@/components/ui/chart"
+} from "@/components/ui/chart";
const COLORS = [
"#4ade80",
diff --git a/components/code-block.tsx b/components/code-block.tsx
index 780b338..30a261f 100644
--- a/components/code-block.tsx
+++ b/components/code-block.tsx
@@ -1,7 +1,7 @@
-import * as React from 'react'
-import CodeEditorPrimitive from '@uiw/react-textarea-code-editor'
+import * as React from "react";
+import CodeEditorPrimitive from "@uiw/react-textarea-code-editor";
-import { cn } from '@/lib/utils'
+import { cn } from "@/lib/utils";
function CodeEditor({
className,
diff --git a/components/theme-provider.tsx b/components/theme-provider.tsx
index 13d013b..f62386b 100644
--- a/components/theme-provider.tsx
+++ b/components/theme-provider.tsx
@@ -1,11 +1,11 @@
"use client"
-import * as React from "react"
-import { ThemeProvider as NextThemesProvider } from "next-themes"
+import * as React from "react";
+import { ThemeProvider as NextThemesProvider } from "next-themes";
export function ThemeProvider({
- children,
- ...props
+ children,
+ ...props
}: React.ComponentProps) {
- return {children}
+ return {children}
}
\ No newline at end of file
diff --git a/components/typography.tsx b/components/typography.tsx
index 709e998..63a053e 100644
--- a/components/typography.tsx
+++ b/components/typography.tsx
@@ -1,4 +1,4 @@
-import { cn } from "@/lib/utils"
+import { cn } from "@/lib/utils";
// https://ui.shadcn.com/docs/components/radix/typography.md
@@ -16,7 +16,7 @@ export function H1({ className, children, ...props }: React.HTMLAttributes) {
return (