diff --git a/public/collab-highres.webp b/public/collab-highres.webp new file mode 100644 index 0000000..d940b8a Binary files /dev/null and b/public/collab-highres.webp differ diff --git a/public/collab.webp b/public/collab.webp new file mode 100644 index 0000000..9e27eaf Binary files /dev/null and b/public/collab.webp differ diff --git a/src/Collab.tsx b/src/Collab.tsx new file mode 100644 index 0000000..9cb40d2 --- /dev/null +++ b/src/Collab.tsx @@ -0,0 +1,17 @@ +export default function Collab() { + return ( +
+ + + + Sr Izan + Willysuna + Aleandro + Nerticel + Orchuna + XaviXE + +

click on each person haha yes

+
+ ) +} \ No newline at end of file diff --git a/src/main.tsx b/src/main.tsx index 716fc8c..7564929 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -7,6 +7,7 @@ import { ThemeProvider, createTheme } from '@mui/material/styles'; import Blog from "./Blog.tsx"; import {BlogPost} from "./BlogPost.tsx"; import AnalyticsNotice from "./AnalyticsNotice.tsx"; +import Collab from './Collab.tsx'; const router = createBrowserRouter([ { @@ -20,6 +21,10 @@ const router = createBrowserRouter([ { path: "/blog/:id", element: + }, + { + path: '/collab', + element: } ]);