Skip to content

Commit

Permalink
additional changes to make sure metadata is updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnaDuiker committed Mar 11, 2025
1 parent b5182a6 commit fb3f94d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useEffect } from 'react';
import Head from 'next/head';
import '../styles.css';
import IframeCommunication from '../components/iframeCommunication';

Expand All @@ -13,8 +14,12 @@ export default function MyApp({ Component, pageProps }) {

return (
<>
<Head>
<title>Alkemio - Safe Spaces for Collaboration</title>
<meta name="description" content="Join Alkemio! Achieve your goals. Safe smart spaces for collective action." />
</Head>
<IframeCommunication />
<Component {...pageProps} />
</>
);
}
}
8 changes: 7 additions & 1 deletion theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,11 @@ export default {
project: {
title: "Alkemio - Safe Spaces for Collaboration",
description: "Join Alkemio! Achieve your goals. Safe smart spaces for collective action."
}
},
head: (
<>
<title>Alkemio - Safe Spaces for Collaboration</title>
<meta name="description" content="Join Alkemio! Achieve your goals. Safe smart spaces for collective action." />
</>
)
}

0 comments on commit fb3f94d

Please sign in to comment.