mirror of
https://github.com/xHyroM/links.git
synced 2024-11-24 00:01:05 +01:00
Compare commits
No commits in common. "c2656bb664930e1d3e4e80a5a77e2766bd6370c6" and "1645f49313e637ae0ef82262e6e94dcd8484499d" have entirely different histories.
c2656bb664
...
1645f49313
7 changed files with 5886 additions and 21 deletions
|
@ -1,8 +0,0 @@
|
||||||
[providers]
|
|
||||||
[providers.sourcehut]
|
|
||||||
ssh = "git@git.sr.ht:~hyro/links"
|
|
||||||
primary = true
|
|
||||||
[providers.github]
|
|
||||||
ssh = "git@github.com:xhyrom/links.git"
|
|
||||||
[providers.codeberg]
|
|
||||||
ssh = "git@codeberg.org:xHyroM/links.git"
|
|
|
@ -16,13 +16,13 @@
|
||||||
|
|
||||||
1. Clone this repository: `git clone https://github.com/xHyroM/links.git`
|
1. Clone this repository: `git clone https://github.com/xHyroM/links.git`
|
||||||
2. Navigate to the project directory: `cd links`
|
2. Navigate to the project directory: `cd links`
|
||||||
3. Install the dependencies: `bun install`
|
3. Install the dependencies: `pnpm install`
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
- To run the development server: `bun run dev`
|
- To run the development server: `pnpm run dev`
|
||||||
- To build the project for production: `bun run build`
|
- To build the project for production: `pnpm run build`
|
||||||
- To preview the production build: `bun run preview`
|
- To preview the production build: `pnpm run preview`
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
5880
pnpm-lock.yaml
Normal file
5880
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -19,12 +19,6 @@ export const BUTTONS = [
|
||||||
href: "https://github.com/xHyroM",
|
href: "https://github.com/xHyroM",
|
||||||
icon: "mdi:github",
|
icon: "mdi:github",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "SourceHut",
|
|
||||||
background: "bg-sourcehut hover:bg-sourcehut/80",
|
|
||||||
href: "https://sr.ht/~hyro/",
|
|
||||||
icon: "simple-icons:sourcehut",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "User",
|
name: "User",
|
||||||
background: "bg-discord hover:bg-discord/80",
|
background: "bg-discord hover:bg-discord/80",
|
||||||
|
|
|
@ -4,8 +4,8 @@ import HeadCommon from "../components/HeadCommon.astro";
|
||||||
import HeadSEO from "../components/HeadSEO.astro";
|
import HeadSEO from "../components/HeadSEO.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html dir="ltr" lang="en">
|
<html dir="ltr" lang="sk-SK">
|
||||||
<head>
|
<head>
|
||||||
<HeadCommon />
|
<HeadCommon />
|
||||||
<HeadSEO />
|
<HeadSEO />
|
||||||
|
|
|
@ -56,7 +56,6 @@ module.exports = {
|
||||||
wikipedia: "#000000",
|
wikipedia: "#000000",
|
||||||
youtube: "#ff0000",
|
youtube: "#ff0000",
|
||||||
// custom services
|
// custom services
|
||||||
sourcehut: "#666666",
|
|
||||||
kofi: "#e0293e",
|
kofi: "#e0293e",
|
||||||
hackerone: "#1832FE",
|
hackerone: "#1832FE",
|
||||||
chess: "#5e8949",
|
chess: "#5e8949",
|
||||||
|
|
Loading…
Reference in a new issue