-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestimonials.html
More file actions
110 lines (103 loc) · 3.48 KB
/
Copy pathtestimonials.html
File metadata and controls
110 lines (103 loc) · 3.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testimonials — Paniniyam</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&family=Vesper+Libre:wght@400;700&display=swap">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Noto Sans', system-ui, sans-serif;
background: #fdf8f0;
color: #2c1d0e;
line-height: 1.75;
padding: 0 16px 60px;
}
header {
background: #1e2d3d;
color: #e8dcc8;
padding: 16px 24px;
margin: 0 -16px 40px;
display: flex;
align-items: center;
gap: 20px;
}
header a {
color: #e8dcc8;
text-decoration: none;
font-size: .9em;
opacity: .75;
}
header a:hover { opacity: 1; }
.logo {
font-family: 'Vesper Libre', serif;
font-size: 1.3em;
font-weight: 700;
}
.wrap { max-width: 680px; margin: 0 auto; }
h1 { font-family: 'Vesper Libre', serif; font-size: 1.8em; margin-bottom: 6px; }
.subtitle { font-size: .9em; color: #7a6a55; margin-bottom: 32px; }
.testimonial {
background: #fff;
border: 1px solid #ddd3c0;
border-left: 4px solid #62b2ba;
border-radius: 6px;
padding: 22px 24px;
margin-bottom: 20px;
}
blockquote {
font-size: .95em;
color: #2c1d0e;
line-height: 1.8;
margin-bottom: 14px;
font-style: italic;
}
.attribution {
font-size: .85em;
color: #7a6a55;
font-weight: 600;
}
a { color: #62b2ba; }
footer {
margin-top: 48px;
font-size: .8em;
color: #7a6a55;
text-align: center;
}
</style>
</head>
<body>
<header>
<span class="logo">Paniniyam</span>
<a href="index.html">← Back to app</a>
</header>
<div class="wrap">
<h1>What learners say</h1>
<p class="subtitle">Kind words from those who use Paniniyam in their study of Sanskrit grammar.</p>
<div class="testimonial">
<blockquote>
"Hello! I am a new learner of Sanskrit and have just begun my journey of learning Sanskrit
grammar. I am very grateful for this site that you have created as it has helped with my
note taking throughout my learning experience. One thing that I feel would be helpful would
be the general meaning of sutras to assist foreign learners who can't translate easily.
Other than that this site is great and has been a great tool that I have been able to
confidently share with others who are interested in learning this great, ancient language.
I appreciate everything this site has given me. Thank you very much."
</blockquote>
<div class="attribution">— Joe, 2026</div>
</div>
<div class="testimonial">
<blockquote>
"The website is inspirational and very useful indeed . Great work. 🙏"
</blockquote>
<div class="attribution">— Amar, 2026</div>
</div>
<footer>
<p>© 2026 Paniniyam · <a href="privacy_policy.html">Privacy Policy</a> · <a href="terms.html">Terms of Use</a> · <a href="copyright.html">Copyright</a> · <a href="contact.html">Contact Us</a> · <a href="index.html">Back to app</a></p>
</footer>
</div>
</body>
</html>