-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💄 website: include our links and favicon
- Loading branch information
Showing
17 changed files
with
87 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" href="/favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Vite App</title> | ||
<meta charset="UTF-8" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
<link rel="manifest" href="/site.webmanifest" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Codes - HTTP Glossary</title> | ||
</head> | ||
<body> | ||
<div id="app" class="relative flex flex-col w-full h-fit-content"></div> | ||
<div id="app" class="h-fit-content relative flex w-full flex-col"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const Links = Object.freeze({ | ||
github: "https://github.com/andrepg/http-codes", | ||
releases: "https://github.com/andrepg/http-codes/releases", | ||
discord: "https://discord.gg/WYBDMAg9GM", | ||
sponsor: "https://github.com/sponsors/andrepg", | ||
|
||
technologies: { | ||
adwaita: "https://gnome.pages.gitlab.gnome.org/libadwaita/", | ||
javascript: "https://ecma-international.org/publications-and-standards/standards/ecma-262/", | ||
gtk: "https://gtk.org", | ||
gjs: "https://gjs.guide", | ||
flatpak: "https://flatpak.org" | ||
} | ||
}) | ||
|
||
export default Links; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<script setup> | ||
const technologiesClasses = 'h-32 w-auto transition-all duration-500 hover:scale-105 hover:rotate-2'; | ||
import adwaita from "@/assets/technologies/adwaita.svg"; | ||
import gjs from "@/assets/technologies/gjs.png" | ||
import gtk from "@/assets/technologies/gtk.png" | ||
import javascript from "@/assets/technologies/javascript.png" | ||
import flatpak from "@/assets/technologies/flatpak.png" | ||
import { inject } from "vue"; | ||
const links = inject("links") | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-row py-10 px-5 flex-wrap gap-6 sm:gap-10 justify-center items-center md:py-20"> | ||
<a :href="links.technologies.adwaita" title="Adwaita UI"> | ||
<img :class="technologiesClasses" :src="adwaita" alt="Adwaita UI" /> | ||
</a> | ||
<a :href="links.technologies.javascript" title="Javascript"> | ||
<img :class="technologiesClasses" :src="javascript" alt="Javascript" /> | ||
</a> | ||
<a :href="links.technologies.gtk" title="GTK"> | ||
<img :class="technologiesClasses" :src="gtk" alt="GTK" /> | ||
</a> | ||
<a :href="links.technologies.gjs" title="GJS"> | ||
<img :class="technologiesClasses" :src="gjs" alt="GJS" /> | ||
</a> | ||
<a :href="links.technologies.flatpak" title="Flatpak"> | ||
<img :class="technologiesClasses" :src="flatpak" alt="Flatpak" /> | ||
</a> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters