-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
135 lines (131 loc) · 8.31 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Neoneko - Home of Cats Blender Plugin and Avatar Toolkit. Tools and resources for 3D modeling and avatar creation.">
<!-- Open Graph Tags -->
<meta property="og:title" content="Neoneko Website">
<meta property="og:description" content="Home of Cats Blender Plugin and Avatar Toolkit. Tools and resources for 3D modeling and avatar creation.">
<meta property="og:image" content="https://neoneko.xyz/images/logo.jpg">
<meta property="og:url" content="https://neoneko.xyz">
<meta property="og:type" content="website">
<!-- Preload critical assets -->
<link rel="preload" href="css/common.css" as="style">
<link rel="preload" href="css/mobile.css" as="style">
<link rel="preload" href="css/index.css" as="style">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" as="style">
<title>Neoneko Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/mobile.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<script src="js/mobile-menu.js" defer></script>
<script src="js/theme-selector.js" defer></script>
</head>
<body>
<header role="banner">
<nav role="navigation" aria-label="Main navigation">
<a href="/" class="logo-link" aria-label="Neoneko Home">
<img src="https://neoneko.xyz/images/logo.jpg" alt="Neoneko Logo" class="logo-image" loading="lazy">
<div class="logo">Neoneko</div>
</a>
<ul class="menu" role="menubar">
<li role="none"><a href="index.html" role="menuitem">Home</a></li>
<li class="has-submenu" role="none">
<a href="#" role="menuitem" aria-haspopup="true" aria-expanded="false">Projects</a>
<ul class="submenu" role="menu" aria-label="Projects">
<li role="none"><a href="https://catsblenderplugin.xyz" role="menuitem">Cats Blender Plugin</a></li>
<li role="none"><a href="https://avatartoolkit.xyz" role="menuitem">Avatar Toolkit</a></li>
</ul>
</li>
<li class="has-submenu" role="none">
<a href="#" role="menuitem" aria-haspopup="true" aria-expanded="false">Community</a>
<ul class="submenu" role="menu" aria-label="Community">
<li role="none"><a href="https://discord.neoneko.xyz/" role="menuitem"><i class="fab fa-discord"></i> Discord</a></li>
<li role="none"><a href="https://bsky.app/profile/neoneko.xyz" role="menuitem"><i class="fa-brands fa-bluesky"></i> Bluesky</a></li>
</ul>
</li>
<li class="has-submenu" role="none">
<a href="#" role="menuitem" aria-haspopup="true" aria-expanded="false">About</a>
<ul class="submenu" role="menu" aria-label="About">
<li role="none"><a href="about.html" role="menuitem">About Us</a></li>
<li role="none"><a href="support-us.html" role="menuitem">Support Us</a></li>
<li role="none"><a href="contact.html" role="menuitem">Contact Us</a></li>
</ul>
</li>
<li role="none"><a href="faq.html" role="menuitem">FAQ</a></li>
</ul>
<div class="theme-hint">
<select id="theme-select" aria-label="Theme Selector" role="combobox">
<option value="main-site" data-theme="main-site">Main Theme</option>
<option value="light" data-theme="light">Light Theme</option>
<option value="dark" data-theme="dark">Dark Theme</option>
<option value="high-contrast" data-theme="high-contrast">High Contrast</option>
<option value="forest" data-theme="forest">Forest Theme</option>
<option value="mint" data-theme="mint">Mint Theme</option>
<option value="cyberpunk" data-theme="cyberpunk">Cyberpunk Theme</option>
<option value="halloween" data-theme="halloween">Halloween Theme</option>
</select>
</div>
<button id="mobile-menu-button" class="mobile-menu-button" aria-label="Toggle Navigation Menu" aria-expanded="false">☰</button>
</nav>
</header>
<main id="main-content" role="main">
<div class="intro-container">
<section class="intro-section">
<p class="intro-greeting">Hi, We are</p>
<h1 class="intro-title">NEONEKO</h1>
<p class="intro-text">
Neoneko is a team dedicated to creating modern, high-quality plugins for Blender and other software. Our mission is simple - ensure every team member has an equal voice and prevent power from concentrating in any single person's hands.
</p>
<p class="intro-text">
Right now, we're maintaining the Unofficial Cats Blender Plugin while developing something exciting - Avatar Toolkit, our next-gen plugin designed to be the evolution of Cats. We created Neoneko to prevent history from repeating itself, after seeing how the original Cats project stalled when its author disappeared.
</p>
<div class="button-group">
<a href="https://catsblenderplugin.xyz" class="primary-button">Cats Blender Plugin</a>
<a href="https://avatartoolkit.xyz" class="primary-button">Avatar Toolkit</a>
</div>
</section>
</div>
</main>
<footer role="contentinfo">
<div class="footer-content">
<ul class="footer-menu" role="menu">
<li role="none"><a href="index.html" role="menuitem">Home</a></li>
<li role="none"><a href="https://catsblenderplugin.xyz" role="menuitem">Cats Blender Plugin</a></li>
<li role="none"><a href="https://avatartoolkit.xyz" role="menuitem">Avatar Toolkit</a></li>
<li role="none"><a href="about.html" role="menuitem">About Us</a></li>
<li role="none"><a href="support-us.html" role="menuitem">Support Us</a></li>
<li role="none"><a href="contact.html" role="menuitem">Contact Us</a></li>
<li role="none"><a href="faq.html" role="menuitem">FAQ</a></li>
</ul>
<ul class="footer-menu" role="menu">
<li role="none"><a href="privacy.html" role="menuitem">Privacy Policy</a></li>
<li role="none"><a href="terms.html" role="menuitem">Terms of Service</a></li>
</ul>
<ul class="social-menu" role="menu">
<li role="none">
<a href="https://discord.neoneko.xyz/" role="menuitem" aria-label="Discord">
<i class="fab fa-discord"></i>
</a>
</li>
<li role="none">
<a href="https://bsky.app/profile/neoneko.xyz" role="menuitem" aria-label="Bluesky">
<i class="fa-brands fa-bluesky"></i>
</a>
</li>
</ul>
<p class="footer-text">
Cats Blender Plugin Unofficial and Avatar Toolkit are licensed under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPLv3 License</a>.<br>
Blender is a registered trademark of the <a href="https://www.blender.org/about/foundation/">Blender Foundation</a>.<br>
Neoneko is not affiliated with the Blender Foundation.<br>
Copyright © 2024 <a href="https://neoneko.xyz">Neoneko</a>. All rights reserved.
</p>
</div>
</footer>
</body>
</html>