Skip to content

Instantly share code, notes, and snippets.

View danielschmid's full-sized avatar

Daniel Schmid danielschmid

View GitHub Profile
@danielschmid
danielschmid / JSON
Created January 3, 2024 20:23
space.json
{
"buildings": [
{
"id": "building1",
"name": "Main Building",
"floors": [
{
"id": "ground_floor",
"name": "Ground Floor",
"spaces": [
@danielschmid
danielschmid / [uid].tsx
Created July 15, 2023 11:06
Typescript Erro
import { createClient } from "@/prismicio";
import type {
InferGetStaticPropsType,
GetStaticPropsContext,
GetStaticPaths,
} from "next";
import Page from "@/components/Page";

Concept Web

  • World Wide Web
    • Système hypertexte public sur Internet. Permet de consulter, avec un navigateur, des pages accessibles sur des sites.
    • Inventé en 1989-1990 par Tim Berners-Lee au CERN
  • client-server
    • client–serveur désigne un mode de transaction (souvent à travers un réseau) entre plusieurs programmes ou processus : l'un, qualifié de client, envoie des requêtes ; l'autre, qualifié de serveur, attend les requêtes des clients et y répond
  • URL (Unified ressource locator)
  • Domain name
import { globalFontFace, globalStyle } from "@vanilla-extract/css"
import { theme } from "./theme.css"
globalFontFace("UntitledSansRegular", {
src: "./fonts/untitled-sans-regular.woff2"
// i’ve also tried:
// src: 'local("./fonts/untitled-sans-regular.woff2")',
});
@font-face {
font-display: swap;
font-family: 'Antarctica Regular';
font-stretch: normal;
font-style: normal;
font-weight: 400;
src: url('../fonts/AntarcticaBeta-Regular.woff2') format('woff2');
}