Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
8ec5be25d4 |
7 changed files with 9 additions and 9 deletions
|
@ -25,7 +25,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||||
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/pro-regular-svg-icons": "^6.4.2",
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||||
"@solidjs/meta": "^0.28.6",
|
"@solidjs/meta": "^0.28.6",
|
||||||
"@solidjs/router": "^0.8.3",
|
"@solidjs/router": "^0.8.3",
|
||||||
"solid-js": "^1.8.1",
|
"solid-js": "^1.8.1",
|
||||||
|
|
6
pnpm-lock.yaml
generated
6
pnpm-lock.yaml
generated
|
@ -11,7 +11,7 @@ dependencies:
|
||||||
'@fortawesome/free-brands-svg-icons':
|
'@fortawesome/free-brands-svg-icons':
|
||||||
specifier: ^6.4.2
|
specifier: ^6.4.2
|
||||||
version: 6.4.2
|
version: 6.4.2
|
||||||
'@fortawesome/pro-regular-svg-icons':
|
'@fortawesome/free-solid-svg-icons':
|
||||||
specifier: ^6.4.2
|
specifier: ^6.4.2
|
||||||
version: 6.4.2
|
version: 6.4.2
|
||||||
'@solidjs/meta':
|
'@solidjs/meta':
|
||||||
|
@ -1792,8 +1792,8 @@ packages:
|
||||||
'@fortawesome/fontawesome-common-types': 6.4.2
|
'@fortawesome/fontawesome-common-types': 6.4.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@fortawesome/pro-regular-svg-icons@6.4.2:
|
/@fortawesome/free-solid-svg-icons@6.4.2:
|
||||||
resolution: {integrity: sha512-e6LJbjPuthsDfskXvsy3kSpz/NFD2FQ0utZHelMwOyjkalPSbM3kyedZ4Vgq3XVTKo6NQd9FtIoHxxmEQHQKRA==, tarball: https://npm.fontawesome.com/@fortawesome/pro-regular-svg-icons/-/6.4.2/pro-regular-svg-icons-6.4.2.tgz}
|
resolution: {integrity: sha512-sYwXurXUEQS32fZz9hVCUUv/xu49PEJEyUOsA51l6PU/qVgfbTb2glsTEaJngVVT8VqBATRIdh7XVgV1JF1LkA==, tarball: https://npm.fontawesome.com/@fortawesome/free-solid-svg-icons/-/6.4.2/free-solid-svg-icons-6.4.2.tgz}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
|
@ -2,7 +2,7 @@ import {
|
||||||
faArrowUpRightFromSquare,
|
faArrowUpRightFromSquare,
|
||||||
faBookOpen,
|
faBookOpen,
|
||||||
faHashtag,
|
faHashtag,
|
||||||
} from "@fortawesome/pro-regular-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import { JSXElement, Show, createMemo } from "solid-js";
|
import { JSXElement, Show, createMemo } from "solid-js";
|
||||||
import { A } from "solid-start";
|
import { A } from "solid-start";
|
||||||
import { FontAwesomeIcon } from "./FontAwesomeIcon";
|
import { FontAwesomeIcon } from "./FontAwesomeIcon";
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {
|
||||||
faCircleHalfStroke,
|
faCircleHalfStroke,
|
||||||
faGlobe,
|
faGlobe,
|
||||||
faXmark,
|
faXmark,
|
||||||
} from "@fortawesome/pro-regular-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import { createSignal } from "solid-js";
|
import { createSignal } from "solid-js";
|
||||||
import { A, useNavigate } from "solid-start";
|
import { A, useNavigate } from "solid-start";
|
||||||
import { FontAwesomeIcon } from "../FontAwesomeIcon";
|
import { FontAwesomeIcon } from "../FontAwesomeIcon";
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {
|
||||||
faCircleHalfStroke,
|
faCircleHalfStroke,
|
||||||
faGlobe,
|
faGlobe,
|
||||||
faXmark,
|
faXmark,
|
||||||
} from "@fortawesome/pro-regular-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import { createSignal } from "solid-js";
|
import { createSignal } from "solid-js";
|
||||||
import { A, useNavigate } from "solid-start";
|
import { A, useNavigate } from "solid-start";
|
||||||
import { FontAwesomeIcon } from "../FontAwesomeIcon";
|
import { FontAwesomeIcon } from "../FontAwesomeIcon";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { faYoutube } from "@fortawesome/free-brands-svg-icons";
|
import { faYoutube } from "@fortawesome/free-brands-svg-icons";
|
||||||
import { faBookOpen, faGlobe } from "@fortawesome/pro-regular-svg-icons";
|
import { faBookOpen, faGlobe } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { A, Body, Link, Title } from "solid-start";
|
import { A, Body, Link, Title } from "solid-start";
|
||||||
import { FontAwesomeIcon } from "~/components/FontAwesomeIcon";
|
import { FontAwesomeIcon } from "~/components/FontAwesomeIcon";
|
||||||
import { lightMode } from "~/components/de/Navbar";
|
import { lightMode } from "~/components/de/Navbar";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { faYoutube } from "@fortawesome/free-brands-svg-icons";
|
import { faYoutube } from "@fortawesome/free-brands-svg-icons";
|
||||||
import { faBookOpen, faGlobe } from "@fortawesome/pro-regular-svg-icons";
|
import { faBookOpen, faGlobe } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { A, Body, Link, Title } from "solid-start";
|
import { A, Body, Link, Title } from "solid-start";
|
||||||
import { FontAwesomeIcon } from "~/components/FontAwesomeIcon";
|
import { FontAwesomeIcon } from "~/components/FontAwesomeIcon";
|
||||||
import { lightMode } from "~/components/en/Navbar";
|
import { lightMode } from "~/components/en/Navbar";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue