-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (101 loc) · 5.71 KB
/
index.html
File metadata and controls
111 lines (101 loc) · 5.71 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
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Platform Engineering Toolkit - The People & Org Side - Join the Ride!</title>
<meta name="description" content="Not new tech. Just proven practices to shape the people and organizational side of platform engineering - where impact happens.">
<meta name="author" content="Platform Engineering Toolkit">
<meta name="keywords" content="platform engineering, devops, developer experience, internal platforms, cloud native">
<meta property="og:title" content="Platform Engineering Toolkit - The People & Org Side - Join the Ride!">
<meta property="og:description" content="Not new tech. Just proven practices to shape the people and organizational side of platform engineering - where impact happens.">
<meta property="og:type" content="website">
<meta property="og:image" content="ShareableIcon.png"/>
<meta property="og:image:secure_url" content="ShareableIcon.png"/>
<meta property="og:image:type" content="image/png"/>
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="styles.css">
<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&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico" sizes="32x32">
<link rel="icon" href="android-chrome-512x512.png" type="image/png">
<link rel="apple-touch-icon" href="apple-touch-icon.png"><!-- 180×180 -->
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<nav class="nav">
<a href="index.html" class="nav-brand">Platform Engineering Toolkit</a>
<div class="nav-links">
<a href="get-involved.html" class="nav-link">Get Involved</a>
<a href="about.html" class="nav-link">About</a>
</div>
</nav>
</div>
</header>
<!-- Main Content -->
<main>
<div class="container">
<!-- Hero Section -->
<div class="hero">
<div class="hero-content">
<h1 class="hero-title">
🎢 Platform Engineering Toolkit
</h1>
<p class="hero-description">
Not new tech. <br>
Just proven practices to shape the people and organizational side of platform engineering - where impact happens.
</p>
<!-- Three Action Buttons -->
<div class="hero-buttons">
<a href="what-and-why.html" class="btn btn-primary">
<svg class="btn-icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L22 7L12 12L2 7L12 2Z"/>
<path d="M2 17L12 22L22 17"/>
<path d="M2 12L12 17L22 12"/>
</svg>
What And Why
</a>
<a href="where-to-start.html" class="btn btn-secondary">
<svg class="btn-icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/>
</svg>
Where To Start
</a>
<a href="starting-and-progressing.html" class="btn btn-accent">
<svg class="btn-icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M9 11H5a2 2 0 0 0-2 2v3c0 1.1.9 2 2 2h4m6-6h4a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-4"/>
<path d="M9 7L5 3L9 7z"/>
<path d="M15 7L19 3L15 7z"/>
<circle cx="12" cy="12" r="3"/>
</svg>
Starting And Progressing
</a>
</div>
<div class="hero-divider"></div>
</div>
</div>
<div class="footer" >
<p class="footer-text">
Want to know more about why this toolkit? Watch the video below!
<br><i>(By clicking the video below, you accept Youtube cookies)</i>
<br> 
</p>
<div style="display: flex; justify-content: center;">
<iframe style="aspect-ratio: 16 / 9; width: 100% !important;" src="https://www.youtube-nocookie.com/embed/8rONAJ79mNI?si=CC_kDjbPacdt6X6v" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p class="footer-text">
Not new tech.
Just proven practices to shape the people and organizational side of platform engineering - where impact happens.
</p>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>