Removed some unused stuff

This commit is contained in:
Lennon Puldagrealy
2022-12-18 12:10:10 -08:00
parent f2be89fc73
commit 6c271e3cc1
5 changed files with 2 additions and 64 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import Image from "next/image";
import { Container } from "./Container";
function BackgroundIllustration(props) {
let id = useId();
const id = useId();
return (
<div {...props}>
-13
View File
@@ -1,13 +0,0 @@
/* body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
} */
-17
View File
@@ -1,17 +0,0 @@
// import React from "react";
// import ReactDOM from "react-dom/client";
// import "./index.css";
// import App from "./App";
// import reportWebVitals from "./reportWebVitals";
// const root = ReactDOM.createRoot(document.getElementById("root"));
// root.render(
// <React.StrictMode>
// <App />
// </React.StrictMode>
// );
// // If you want to start measuring performance in your app, pass a function
// // to log results (for example: reportWebVitals(console.log))
// // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
// reportWebVitals();
+1 -7
View File
@@ -1,18 +1,12 @@
import { createBrowserSupabaseClient } from "@supabase/auth-helpers-nextjs";
import { SessionContextProvider } from "@supabase/auth-helpers-react";
import { useEffect, useState } from "react";
import { useState } from "react";
import "../styles/globals.css";
import "focus-visible";
function MyApp({ Component, pageProps }) {
const [supabase] = useState(() => createBrowserSupabaseClient());
useEffect(() => {
const use = async () => {
// (await import('tw-elements')).default;
};
use();
}, []);
return (
<SessionContextProvider supabaseClient={supabase} initialSession={pageProps.initialSession}>
<Component {...pageProps} />
-26
View File
@@ -2,32 +2,6 @@
@tailwind components;
@tailwind utilities;
/* html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
} */
@font-face {
font-family: "Inter";
font-weight: 100 900;