-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
43 lines (41 loc) · 1.99 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Judaica Canvas</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<header class="bg-gray-800 text-white p-4 fixed top-0 left-0 right-0 z-10">
<nav class="container mx-auto flex justify-between">
<div class="logo text-xl font-bold">Judaica Canvas</div>
<ul class="flex space-x-4">
<li><a href="index.html" class="hover:underline">Home</a></li>
<li><a href="https://shop.judaicacanvas.com" class="hover:underline">Gallery</a></li>
<li><a href="about.html" class="hover:underline">About</a></li>
<li><a href="contact.html" class="hover:underline">Contact</a></li>
</ul>
</nav>
</header>
<main class="container mx-auto px-4 py-6 mt-16">
<div class="bg-white shadow rounded-lg overflow-hidden mb-8 p-6">
<h1 class="text-4xl font-bold mb-4">About Us</h1>
<p class="text-gray-700 mb-4">
Welcome to Judaica Canvas, your number one source for high-quality Judaica art. Our mission is to provide beautiful, meaningful artwork that inspires and connects people to their heritage. At Judaica Canvas, we are dedicated to offering a unique selection of art pieces that are created using custom trained AI models and other digital tools.
</p>
<p class="text-gray-700 mb-4">
Our collection includes a variety of styles, from traditional painting styles to more modern styles.
</p>
<p class="text-gray-700">
Thank you for visiting our gallery. We hope you find a piece that resonates with you and adds a touch of inspiration to your home or office.
</p>
</div>
</main>
<footer class="bg-gray-800 text-white p-4 mt-6">
<div class="container mx-auto text-center">
© 2024 Judaica Canvas. All rights reserved.
</div>
</footer>
</body>
</html>