18 lines
482 B
HTML
18 lines
482 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sky Art Shop</title>
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<script>
|
|
// Redirect to React app
|
|
window.location.href = "/app/";
|
|
</script>
|
|
<link rel="stylesheet" href="/assets/css/theme-colors.css" />
|
|
</head>
|
|
<body>
|
|
<p>Redirecting to Sky Art Shop...</p>
|
|
</body>
|
|
</html>
|