chore: Some fixes and removed old stuff

main
Antonio De Lucreziis 2 years ago
parent 228f08b327
commit e55f2452dd

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/main.scss"> <link rel="stylesheet" href="/styles/main.scss">
<title>Notes</title> <title>Go & ViteJS Template</title>
</head> </head>
<body> <body>
<script type="module" src="/src/main.jsx"></script> <script type="module" src="/src/main.jsx"></script>

@ -1,3 +1,5 @@
import { Masonry } from './components/Masonry.jsx' export const PageHomepage = ({}) => (
<main>
export const PageHomepage = ({}) => <main></main> <h1>Homepage</h1>
</main>
)

@ -1,19 +1,18 @@
// Reset
*, *,
*::before, *::before,
*::after { *::after {
// Good practice
box-sizing: border-box; box-sizing: border-box;
// For body and headings as typography should be done by hand anyway
margin: 0; margin: 0;
font: inherit; // For controls
font-family: inherit;
appearance: none; appearance: none;
} }
input, html,
button { body {
background: unset; display: contents;
border: unset;
border-radius: 0;
outline: none;
} }

@ -2,9 +2,13 @@ module aziis98.com/template-go-vitejs
go 1.19 go 1.19
require (
github.com/gofiber/fiber/v2 v2.42.0
golang.org/x/sync v0.1.0
)
require ( require (
github.com/andybalholm/brotli v1.0.4 // indirect github.com/andybalholm/brotli v1.0.4 // indirect
github.com/gofiber/fiber/v2 v2.42.0 // indirect
github.com/google/uuid v1.3.0 // indirect github.com/google/uuid v1.3.0 // indirect
github.com/klauspost/compress v1.15.9 // indirect github.com/klauspost/compress v1.15.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-colorable v0.1.13 // indirect
@ -18,6 +22,5 @@ require (
github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.44.0 // indirect github.com/valyala/fasthttp v1.44.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
) )

Loading…
Cancel
Save