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> </Link>
</Typography> </Typography>
</Box> </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> </Box>
</Paper> </Paper>

View File

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

View File

@@ -324,6 +324,22 @@ const DashboardPage: React.FC = () => {
</Card> </Card>
</Box> </Box>
</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> </Container>
); );
}; };