Skip to content

Commit

Permalink
Merge pull request #21 from nowrobin/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
nowrobin authored Jul 12, 2024
2 parents f739ce2 + 7d01a5b commit f74b8de
Show file tree
Hide file tree
Showing 14 changed files with 437 additions and 308 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts
.env


Binary file added public/bookmark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/bookmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/chev-left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/chev-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions public/chevron-left.svg

This file was deleted.

4 changes: 0 additions & 4 deletions public/chevron-right.svg

This file was deleted.

3 changes: 3 additions & 0 deletions public/share.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
--background-end-rgb: 0, 0, 0;
}
}
/*
@font-face {
font-family: "SUIT Variable";
font-weight: 100 400 900;
src: url("/public/font/suit/SUIT-Variable.woff2") format("woff2");
} */

body {
color: rgb(var(--foreground-rgb));
Expand Down
26 changes: 25 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,37 @@ export const metadata: Metadata = {
description: "Type quote of the day",
};

import { Poppins, Hahmlet, Merriweather } from "next/font/google";
const poppinFont = Poppins({
preload: false,
weight: ["400"],
style: "normal",
variable: "--font-poppins",
});
const hahmletFont = Hahmlet({
preload: false,
weight: ["400"],
style: "normal",
variable: "--font-hahmlet",
});

const merriweather = Merriweather({
preload: false,
weight: ["400"],
style: "normal",
variable: "--font-merriweather",
});

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html
lang="en"
className={`${hahmletFont.variable} ${poppinFont.variable} ${merriweather.variable}`}
>
<body className={inter.className}>
{children}
<Analytics />
Expand Down
Loading

0 comments on commit f74b8de

Please sign in to comment.