diff --git a/logs/deprecated/old larger svg.txt b/logs/deprecated/old larger svg.txt new file mode 100644 index 00000000..f34b7d6a --- /dev/null +++ b/logs/deprecated/old larger svg.txt @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/images/favicon/dark/android-chrome-192x192.png b/public/images/favicon/dark/android-chrome-192x192.png new file mode 100644 index 00000000..aed06933 Binary files /dev/null and b/public/images/favicon/dark/android-chrome-192x192.png differ diff --git a/public/images/favicon/dark/android-chrome-512x512.png b/public/images/favicon/dark/android-chrome-512x512.png new file mode 100644 index 00000000..1e71a3ae Binary files /dev/null and b/public/images/favicon/dark/android-chrome-512x512.png differ diff --git a/public/images/favicon/dark/apple-touch-icon.png b/public/images/favicon/dark/apple-touch-icon.png new file mode 100644 index 00000000..472c3ac9 Binary files /dev/null and b/public/images/favicon/dark/apple-touch-icon.png differ diff --git a/public/images/favicon/dark/favicon-16x16.png b/public/images/favicon/dark/favicon-16x16.png new file mode 100644 index 00000000..983047cf Binary files /dev/null and b/public/images/favicon/dark/favicon-16x16.png differ diff --git a/public/images/favicon/dark/favicon-32x32.png b/public/images/favicon/dark/favicon-32x32.png new file mode 100644 index 00000000..b16f729b Binary files /dev/null and b/public/images/favicon/dark/favicon-32x32.png differ diff --git a/public/images/favicon/dark/favicon.ico b/public/images/favicon/dark/favicon.ico new file mode 100644 index 00000000..ba9ed953 Binary files /dev/null and b/public/images/favicon/dark/favicon.ico differ diff --git a/public/images/favicon/dark/site.webmanifest b/public/images/favicon/dark/site.webmanifest new file mode 100644 index 00000000..8eeda6ea --- /dev/null +++ b/public/images/favicon/dark/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name":"sPhil", + "short_name":"sPhil", + "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" +} \ No newline at end of file diff --git a/public/images/favicon/light/android-chrome-192x192.png b/public/images/favicon/light/android-chrome-192x192.png new file mode 100644 index 00000000..e1d57d87 Binary files /dev/null and b/public/images/favicon/light/android-chrome-192x192.png differ diff --git a/public/images/favicon/light/android-chrome-512x512.png b/public/images/favicon/light/android-chrome-512x512.png new file mode 100644 index 00000000..d056cfdc Binary files /dev/null and b/public/images/favicon/light/android-chrome-512x512.png differ diff --git a/public/images/favicon/light/apple-touch-icon.png b/public/images/favicon/light/apple-touch-icon.png new file mode 100644 index 00000000..eaa27358 Binary files /dev/null and b/public/images/favicon/light/apple-touch-icon.png differ diff --git a/public/images/favicon/light/favicon-16x16.png b/public/images/favicon/light/favicon-16x16.png new file mode 100644 index 00000000..b1d030e6 Binary files /dev/null and b/public/images/favicon/light/favicon-16x16.png differ diff --git a/public/images/favicon/light/favicon-32x32.png b/public/images/favicon/light/favicon-32x32.png new file mode 100644 index 00000000..1512ea89 Binary files /dev/null and b/public/images/favicon/light/favicon-32x32.png differ diff --git a/public/images/favicon/light/favicon.ico b/public/images/favicon/light/favicon.ico new file mode 100644 index 00000000..2bee596d Binary files /dev/null and b/public/images/favicon/light/favicon.ico differ diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28c..00000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f84222..00000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 8df00fe3..a8eda754 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -3,6 +3,7 @@ import { ReactNode, ReactElement } from "react"; import cn from "classnames"; import { ThemeSwitch } from "nextra-theme-docs"; import LogoAnimated from "./LogoAnimated"; +import LogoOwl from "./LogoOwl"; function FooterLink({ href, children }: { href: string; children: ReactNode }) { const classes = "text-sm text-gray-600 dark:text-gray-400 no-underline hover:text-gray-800 hover:dark:text-gray-200 transition"; @@ -143,16 +144,17 @@ function FooterContent() {
+

- © {new Date().getFullYear()} Eru, Ltd. All rights reserved. + © {new Date().getFullYear()} Eru Iluvatar, Ltd. All rights reserved.

diff --git a/src/components/LogoOwl.tsx b/src/components/LogoOwl.tsx new file mode 100644 index 00000000..d43f6351 --- /dev/null +++ b/src/components/LogoOwl.tsx @@ -0,0 +1,22 @@ +const LogoOwl = ({size = "base"}: {size?: "base" | "large"}) => { + const height = size === "large" ? "h-20" : "h-8" + const width = size === "large" ? "w-20" : "w-8" + + return( + + + + + + + + + + + + + + ) +} + +export default LogoOwl; \ No newline at end of file diff --git a/src/components/NavbarHeader.tsx b/src/components/NavbarHeader.tsx index bba45c06..bf48761a 100644 --- a/src/components/NavbarHeader.tsx +++ b/src/components/NavbarHeader.tsx @@ -1,13 +1,15 @@ import Link from "next/link" import SiteSwitcher from "./SiteSwitcher" import LogoAnimated from "./LogoAnimated"; - +import LogoOwl from "./LogoOwl"; const NavbarHeader = () => { + return( <> - + +
diff --git a/src/components/pages/landing/index.tsx b/src/components/pages/landing/index.tsx index 315a3da7..e5390e4d 100644 --- a/src/components/pages/landing/index.tsx +++ b/src/components/pages/landing/index.tsx @@ -5,6 +5,7 @@ import Heading from "@/components/Heading"; import Paragraph from "@/components/Paragraph"; import Link from "next/link"; import FadeIn from "@/components/FadeIn"; +import LogoOwl from "@/components/LogoOwl"; const LandingPage = () => { diff --git a/src/pages/-contributing/index.mdx b/src/pages/-contributing/index.mdx index 63167f60..8cc4f684 100644 --- a/src/pages/-contributing/index.mdx +++ b/src/pages/-contributing/index.mdx @@ -34,7 +34,7 @@ We use [GitHub](https://github.com/) to coordinate and edit both the philosophy Next you'll need to make your way to the [sPhil code repository](https://github.com/Firgrep/sphil). - + The contents of this particular guide is intended to get you ready to contribute as quickly as possible to the codebase on GitHub and will therefore have omitted explaining many concepts about that platform. If you feel like you need an overview of just what GitHub is and how it works, see our [conceptual overview](). diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx index b2f1ac48..41d93be5 100644 --- a/src/pages/_document.tsx +++ b/src/pages/_document.tsx @@ -3,11 +3,11 @@ import { Html, Head, Main, NextScript } from 'next/document' export default function Document() { return ( - - -
- - + + +
+ + ) } \ No newline at end of file