mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added copyright footer to email
This commit is contained in:
parent
9d6235bc81
commit
0bf90aa0a5
1 changed files with 23 additions and 0 deletions
|
|
@ -24,6 +24,28 @@ const getSession = cache(async () => {
|
|||
return session;
|
||||
});
|
||||
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer
|
||||
className="bg-brandblue text-white"
|
||||
style={{
|
||||
padding: "1rem",
|
||||
textAlign: "center",
|
||||
borderTop: "1px solid #ccc",
|
||||
marginTop: "2rem",
|
||||
}}
|
||||
>
|
||||
<p>
|
||||
© {new Date().getFullYear()} Hestia Hearth And Home. All rights
|
||||
reserved. Hestia proprietary IP.
|
||||
</p>
|
||||
<p>
|
||||
All intellectual property rights are retained by the respective owners.
|
||||
</p>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
|
||||
export default async function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
|
|
@ -43,6 +65,7 @@ export default async function RootLayout({
|
|||
<ReactQueryProvider>
|
||||
<Nav userImage={userImage} />
|
||||
{children}
|
||||
<Footer />
|
||||
</ReactQueryProvider>
|
||||
</Provider>
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue