Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
81d9730
feat(privacy): enhance privacy page with new sections and descriptions
Varkopat May 7, 2026
0b692c4
fix(styles): update background colors for accordion and info box on p…
Varkopat May 8, 2026
2ba92f0
update english privacy.json with current legal text
Varkopat May 8, 2026
1694e0f
fix(privacy): update formatting of data collection descriptions for c…
Varkopat May 11, 2026
498e02d
enhance privacy page styles and add detailed comments for clarity and…
Varkopat May 12, 2026
40adefe
feat(privacy): - Enhanced PrivacyPage with accordion functionality an…
Varkopat May 15, 2026
205b5d1
docs(privacy): add detailed documentation for AccordionSection component
Varkopat May 15, 2026
32f45fd
Fixes made to the UI of the privacy page:
Varkopat May 27, 2026
bb887f6
style(privacy): update layout and styles for Privacy Policy page, enh…
Varkopat Jun 1, 2026
4f3be27
style(privacy): update font-family for paragraph text in Privacy Poli…
Varkopat Jun 2, 2026
2b6e3fd
style(privacy): refactor styles for Privacy Policy page, improving la…
Varkopat Jun 3, 2026
5be206b
style(privacy): add responsive layout adjustments for Privacy Policy …
Varkopat Jun 3, 2026
94e3e99
style(privacy): update color and background properties for Privacy Po…
Varkopat Jun 4, 2026
50a1024
style(privacy): enhance styles for pageContainer with border, border-…
Varkopat Jun 8, 2026
061aab5
style(privacy): update styles for updateNotes and sectionTitle, impro…
Varkopat Jun 8, 2026
83f5d48
Changed one font variable
Varkopat Jun 8, 2026
787f113
style(privacy): enhance layout and styles for updateNotes, sectionTit…
Varkopat Jun 11, 2026
0e9ef8a
style(privacy): update layout for tablet and small desktop; adjust ma…
Varkopat Jun 12, 2026
bd6931a
Removed following properties of fonts: line-height, font-style, and f…
Varkopat Jun 15, 2026
86d87ba
style(privacy): enhance layout by increasing gaps and adjusting paddi…
Varkopat Jun 16, 2026
608c11c
style(privacy): update spacing and margins for improved layout; adjus…
Varkopat Jun 17, 2026
2de0beb
style(privacy): update padding for page layout and remove tablet layo…
Varkopat Jun 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export async function _getPage(lng: string) {
buildPage: () => ({
sections: makePrivacySectionsWithI18n(t),
title: t('main-title'),
pageDescription: t('page-description'),
}),
buildSeo: () => ({
title: t('main-title'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
import { createSection } from '../createSection';

const i18nKeyPrefixes = [
'privacy',
'interpretation',
'user',
'collecting',
'testing',
'age-limit',
'discord',
'analytics',
'legal-basis',
'review',
'gameteam',
'datasubject',
'cookies',
'ethical-principles',
'changes',
'legal-basis',
'data-retention',
'rights',
'security',
'changes',
'contact',
];

Expand Down
Loading
Loading