Initial commit

This commit is contained in:
oscarz
2024-08-12 15:32:16 +08:00
commit f2ab7f054c
78 changed files with 2242 additions and 0 deletions

42
website/about/index.html Normal file
View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About AIGrammar</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
color: #333;
}
.container {
text-align: center;
}
a {
color: #007BFF;
text-decoration: none;
font-size: 1.2em;
}
a:hover {
text-decoration: underline;
}
.spacer {
height: 20px; /* 空行的高度 */
}
</style>
</head>
<body>
<div class="container">
<a href="./terms.html">Term of Use</a>
<div class="spacer"></div>
<a href="./privacy.html">Privacy Policy</a>
</div>
</body>
</html>