Skip to content

Commit

Permalink
feat(portal): add seo meta tags for privacy notice
Browse files Browse the repository at this point in the history
  • Loading branch information
taronaeo committed Apr 13, 2024
1 parent 99dd22d commit 1d0fb0c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions portal/src/routes/(app)/privacy/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@

<svelte:head>
<title>Privacy Notice - RIVAlumni Portal</title>

<meta
name="description"
content="RIVA's Data Protection Notice outlining how we collect, use, and disclose personal data of service users, volunteers, and donors in accordance with the PDPA." />

<meta
name="keywords"
content="Rivervale Primary School, Alumni Association, Data Protection, Privacy Policy, PDPA, Singapore, Personal Data, Consent, Collection, Use, Disclosure" />

<meta
property="og:title"
content="Privacy Notice" />

<meta
property="og:type"
content="website" />

<meta
property="og:url"
content="https://ops.riv-alumni.com/privacy" />

<meta
property="og:description"
content="RIVA's Data Protection Notice outlining how we collect, use, and disclose personal data of service users, volunteers, and donors in accordance with the PDPA." />

<meta
name="twitter:card"
content="summary" />

<meta
name="twitter:title"
content="Privacy Notice" />

<meta
name="twitter:description"
content="RIVA's Data Protection Notice outlining how we collect, use, and disclose personal data of service users, volunteers, and donors in accordance with the PDPA." />
</svelte:head>

<div
Expand Down

0 comments on commit 1d0fb0c

Please sign in to comment.