{title}
{hook &&{hook}
} diff --git a/src/app/templates/page.tsx b/src/app/templates/page.tsx index 707eb6d..9b0b9db 100644 --- a/src/app/templates/page.tsx +++ b/src/app/templates/page.tsx @@ -1,8 +1,14 @@ import Post, { PostProps } from "./BlogPostTemplate" +import onboardingLogo from "@/app/assets/onboarding_logo_rev_2.png" const anArticle: PostProps = { title: "Dotkom er best", hook: "Men det visste jo alle fra før. I tilfelle du er appkommer eller bare dum, og ikke er enig, så forklarer denne artikkelen hvorfor!", + image: { + src: onboardingLogo, + alt: "Dotkom Onboaring 2024 sin logo", + fill: false + }, author: "Henry Græbserg", date: "23/10/2024", content: `The standard Lorem Ipsum passage, used since the 1500s @@ -20,4 +26,4 @@ const Page = () => { ) } -export default Page; \ No newline at end of file +export default Page; diff --git a/tailwind.config.ts b/tailwind.config.ts index 3ffc1fb..a8957a9 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -17,7 +17,7 @@ const config: Config = { accent: "#B432DB", }, fontFamily: { - inter: ["Inter", "sans-serif"], + inter: ["var(--font-inter)", "sans-serif"], }, }, },