Gizlilik politikası bağlantısı ana sayfa, giriş ve kayıt sayfalarına eklendi

This commit is contained in:
hpibot
2026-02-22 00:26:50 +03:00
parent 85d91ce55e
commit 1f9de6eda0
3 changed files with 38 additions and 8 deletions

View File

@@ -244,6 +244,18 @@ const LoginPage: React.FC = () => {
</Link>
</Typography>
</Box>
<Box sx={{ textAlign: 'center', mt: 3, pt: 2, borderTop: '1px solid rgba(0,0,0,0.05)' }}>
<Link
href="https://www.mustafaozkaya.tr/hmarket-gizlilik-politikasi/"
target="_blank"
rel="noopener"
variant="caption"
sx={{ textDecoration: 'none', color: 'text.secondary' }}
>
Gizlilik Politikası
</Link>
</Box>
</Box>
</Paper>

View File

@@ -135,7 +135,7 @@ const RegisterPage: React.FC = () => {
<Box sx={{ display: 'flex', alignItems: 'center', mb: 2 }}>
<ShoppingCart sx={{ fontSize: 40, color: 'primary.main', mr: 1 }} />
<Typography component="h1" variant="h4" color="primary.main" fontWeight="bold">
HMarket
hMarket
</Typography>
</Box>
@@ -352,14 +352,16 @@ const RegisterPage: React.FC = () => {
{/* Terms */}
<Box sx={{ mt: 2, textAlign: 'center' }}>
<Typography variant="body2" color="text.secondary">
By creating an account, you agree to our{' '}
<Link href="#" sx={{ textDecoration: 'none' }}>
Terms of Service
</Link>{' '}
and{' '}
<Link href="#" sx={{ textDecoration: 'none' }}>
Privacy Policy
Hesap oluşturarak,{' '}
<Link
href="https://www.mustafaozkaya.tr/hmarket-gizlilik-politikasi/"
target="_blank"
rel="noopener"
sx={{ textDecoration: 'none' }}
>
Gizlilik Politikası
</Link>
'nı kabul etmiş olursunuz.
</Typography>
</Box>
</Box>

View File

@@ -324,6 +324,22 @@ const DashboardPage: React.FC = () => {
</Card>
</Box>
</Box>
{/* Footer */}
<Box sx={{ mt: 8, pt: 4, borderTop: '1px solid rgba(0,0,0,0.05)', textAlign: 'center' }}>
<Link
href="https://www.mustafaozkaya.tr/hmarket-gizlilik-politikasi/"
target="_blank"
rel="noopener"
variant="body2"
sx={{ textDecoration: 'none', color: 'text.secondary' }}
>
Gizlilik Politikası
</Link>
<Typography variant="caption" display="block" sx={{ mt: 1, color: 'text.disabled' }}>
© 2026 hMarket - Mustafa ÖZKAYA
</Typography>
</Box>
</Container>
);
};