Skip to content

Commit

Permalink
Merge pull request #81 from globalprivacycontrol/issue-75
Browse files Browse the repository at this point in the history
Add user explainer [issue #75]
  • Loading branch information
dharb authored Oct 9, 2024
2 parents d08d646 + f2e9ab5 commit 3f0280f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
Binary file added public/GPC_for_Users.pdf
Binary file not shown.
13 changes: 7 additions & 6 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://globalprivacycontrol.org</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/faq</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/orgs</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press-release/20201007</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press-release/20210128</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2021-08-19T17:56:09.974Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/faq</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/implementation</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/orgs</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press-release/20201007</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
<url><loc>https://globalprivacycontrol.org/press-release/20210128</loc><changefreq>daily</changefreq><priority>0.7</priority><lastmod>2024-10-08T21:15:43.803Z</lastmod></url>
</urlset>
13 changes: 9 additions & 4 deletions src/components/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export default function Navbar({ isLarge = false }) {
<nav className={`${styles.navbar} navbar navbar-expand-md`}>
<div className="navbar__logos">
<Link href="/">

<VisuallyHidden>Home</VisuallyHidden>
<img
className="d-lg-none"
Expand All @@ -19,14 +18,15 @@ export default function Navbar({ isLarge = false }) {
id="hero-logo"
/>
<img
className={`d-none d-lg-block ${isLarge ? styles.headerLogoLarge : styles.headerLogoSmall}`}
className={`d-none d-lg-block ${
isLarge ? styles.headerLogoLarge : styles.headerLogoSmall
}`}
src={`${process.env.publicPrefix}/img/${
isLarge ? 'gpc-logo.svg' : 'gpc-logo-small.svg'
}`}
alt="global privacy control logo"
id="hero-logo"
/>

</Link>
</div>

Expand Down Expand Up @@ -90,9 +90,14 @@ function Links() {
Spec
</Link>
</li>
<li className="nav-item">
<Link href="/GPC_for_Users.pdf" className="nav-link text-uppercase">
For Users
</Link>
</li>
<li className="nav-item">
<Link href="/implementation" className="nav-link text-uppercase">
Implementation
For Implementers
</Link>
</li>
<li className="nav-item">
Expand Down

0 comments on commit 3f0280f

Please sign in to comment.