-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
81 lines (77 loc) · 4.49 KB
/
about.html
File metadata and controls
81 lines (77 loc) · 4.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cosotech — About</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="About Cosotech — Teknofest Model Rocket Team" />
<meta name="color-scheme" content="dark light" />
<meta name="theme-color" content="#0b0f1a" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data:; connect-src 'self'; frame-ancestors 'none'; base-uri 'self'; form-action 'self';" />
<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=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body data-page="about">
<a class="skip-link" href="#main">Skip to content</a>
<header id="site-header" class="nav-wrap" role="navigation" aria-label="Primary">
<nav class="nav container" aria-label="Main">
<a href="index.html" class="brand" data-i18n="brand">Cosotech</a>
<button class="nav-toggle" type="button" aria-label="Menu" aria-controls="nav-menu" aria-expanded="false">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<ul id="nav-menu" class="nav-menu">
<li><a href="index.html" data-i18n="nav.home">Home</a></li>
<li><a href="about.html" data-i18n="nav.about" aria-current="page">About</a></li>
<li><a href="team.html" data-i18n="nav.team">Team</a></li>
<li><a href="missions.html" data-i18n="nav.missions">Our Missions</a></li>
<li><a href="contact.html" data-i18n="nav.contact">Contact</a></li>
<li class="lang-switch" role="group" aria-label="Language">
<button class="lang-btn" type="button" data-lang="en" aria-pressed="true">EN</button>
<button class="lang-btn" type="button" data-lang="tr" aria-pressed="false">TR</button>
</li>
</ul>
</nav>
</header>
<main id="main">
<section id="page-hero" class="section" aria-label="About hero">
<canvas id="stars-canvas" aria-hidden="true"></canvas>
<button class="stars-skip" type="button" data-i18n="stars.skip" hidden>Skip animation</button>
<div class="container" style="text-align:center; position: relative; z-index:1; max-width: 880px;">
<h1 data-i18n="about.title">About Cosotech</h1>
<p class="lead" data-i18n="about.subtitle">A student team united by curiosity, engineering, and the spirit of flight.</p>
</div>
</section>
<section id="about-story" class="section alt reveal" aria-labelledby="about-story-title">
<div class="container">
<h2 id="about-story-title" data-i18n="about.story.title">Our Story</h2>
<p data-i18n="about.story.p1">We started Cosotech with a shared dream: to learn by building, test by launching, and grow by collaborating. Teknofest’s Model Rocket Competition became our stage to apply theory in the real world.</p>
<p data-i18n="about.story.p2">From CAD and aerodynamics to propulsion and electronics, our workflow is hands-on and iterative. We document, test, and improve continuously—celebrating both successes and lessons.</p>
</div>
</section>
<section id="about-values" class="section reveal" aria-labelledby="about-values-title">
<div class="container">
<h2 id="about-values-title" data-i18n="about.values.title">Values</h2>
<div class="cards-grid" role="list">
<article class="card" role="listitem">
<h3 data-i18n="about.values.v1t">Innovation</h3>
<p class="muted" data-i18n="about.values.v1d">We design boldly and iterate responsibly.</p>
</article>
<article class="card" role="listitem">
<h3 data-i18n="about.values.v2t">Collaboration</h3>
<p class="muted" data-i18n="about.values.v2d">We learn fastest when we learn together.</p>
</article>
<article class="card" role="listitem">
<h3 data-i18n="about.values.v3t">Safety</h3>
<p class="muted" data-i18n="about.values.v3d">We put safety first in design, testing, and launches.</p>
</article>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>