Skip to content

Commit f936525

Browse files
committed
feat: add legal text + fix analytics
1 parent 0854746 commit f936525

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

components/Footer/index.jsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,13 @@ const LegalSlot = (
7878
of them does not imply any affiliation with or endorsement by them.
7979
</p>
8080

81-
{FOOTER_LINKS.map(({ link, text }) => (
82-
<NavItem key={link} type="footer" href={link}>
83-
{text}
84-
</NavItem>
85-
))}
81+
<p>
82+
{FOOTER_LINKS.map(({ link, text }) => (
83+
<NavItem key={link} type="footer" href={link}>
84+
{text}
85+
</NavItem>
86+
))}
87+
</p>
8688
</>
8789
);
8890

components/Layout/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import Footer from '../Footer';
2121
*/
2222
export default ({ metadata, headings, readingTime, children }) => (
2323
<>
24-
<Analytics basePath="https://node-learn-pages.vercel.app/" />
25-
<SpeedInsights basePath="https://node-learn-pages.vercel.app/" />
24+
<Analytics basePath="https://node-learn-pages.vercel.app/_vercel" />
25+
<SpeedInsights basePath="https://node-learn-pages.vercel.app/_vercel" />
2626
<NavBar />
2727
<Article>
2828
<SideBar metadata={metadata} />

0 commit comments

Comments
 (0)