This commit is contained in:
Jun-te Kim 2026-01-26 17:49:41 +00:00
parent 78ce56a449
commit db5c6a128d
3 changed files with 13 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -8,6 +8,7 @@ import { cache } from "react";
import { Inter } from "next/font/google";
import { Toaster } from "@/app/shadcn_components/ui/toaster";
import { SpeedInsights } from "@vercel/speed-insights/next";
import type { Metadata } from "next";
// If loading a variable font, you don't need to specify the font weight
const inter = Inter({
@ -18,6 +19,18 @@ const inter = Inter({
export const metadata = {
title: "Ara",
description: "Ara is Domnas portfolio intelligence platform that turns housing stock data into clear, costed retrofit and investment plans.",
icons: {
icon: [
{
url: "/domna-favicon-white.ico",
media: "(prefers-color-scheme: light)",
},
{
url: "/domna-favicon-navy.ico",
media: "(prefers-color-scheme: dark)",
},
],
},
};
const getSession = cache(async () => {