Skip to content

Commit

Permalink
feat: change the share description
Browse files Browse the repository at this point in the history
  • Loading branch information
JinleeJeong committed Apr 21, 2024
1 parent c6d45ab commit dbacf44
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/(main)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ export const viewport: Viewport = {
themeColor: "var(--color-white)",
};

import { Metadata } from "next";

export const generateMetadata = async (): Promise<Metadata> => {
return {
description: "Self-check Your Dividend Portfolio",
};
};

const MainLayout = ({ children }: { children: React.ReactNode }) => {
return (
<div className="flex size-full flex-col">
Expand Down

0 comments on commit dbacf44

Please sign in to comment.