feat: add privacy policy page

This commit is contained in:
Kentai Radiquum 2024-11-30 19:52:59 +05:00
parent fe5b125690
commit f0a1212cc7
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 300 additions and 5 deletions

View file

@ -602,6 +602,19 @@ video {
z-index: -10;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.mb-4 {
margin-bottom: 1rem;
}
.block {
display: block;
}
.flex {
display: flex;
}
@ -618,6 +631,10 @@ video {
height: 100dvh;
}
.h-auto {
height: auto;
}
.h-full {
height: 100%;
}
@ -634,6 +651,10 @@ video {
width: 100%;
}
.max-w-screen-xl {
max-width: 1280px;
}
.flex-row {
flex-direction: row;
}
@ -658,6 +679,10 @@ video {
justify-content: space-between;
}
.gap-16 {
gap: 4rem;
}
.gap-4 {
gap: 1rem;
}
@ -704,11 +729,20 @@ video {
padding: 2rem;
}
.p-4 {
padding: 1rem;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
@ -719,11 +753,24 @@ video {
line-height: 1.75rem;
}
.font-bold {
font-weight: 700;
}
.font-medium {
font-weight: 500;
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.underline {
text-decoration-line: underline;
}
@ -780,6 +827,10 @@ video {
color: rgb(255 133 27 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
text-decoration-line: underline;
}
@media (min-width: 640px) {
.sm\:h-8 {
height: 2rem;
@ -789,6 +840,14 @@ video {
width: 2rem;
}
.sm\:flex-row {
flex-direction: row;
}
.sm\:items-center {
align-items: center;
}
.sm\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
@ -798,6 +857,11 @@ video {
font-size: 1.875rem;
line-height: 2.25rem;
}
.sm\:text-6xl {
font-size: 3.75rem;
line-height: 1;
}
}
@media (min-width: 768px) {
@ -848,4 +912,9 @@ video {
--tw-bg-opacity: 1;
background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.dark\:text-blue-500 {
--tw-text-opacity: 1;
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
}