Skip to content

Commit 6b6ec58

Browse files
1 parent e9b814a commit 6b6ec58

13 files changed

Lines changed: 562 additions & 2 deletions

File tree

about/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@
4747

4848
</ul>
4949
</li>
50+
<li class="header__menu-item dropdown">
51+
<button class="dropdown__label">
52+
<a href="/enterprise" class="no-style-a">Enterprise</a>
53+
</button>
54+
</li>
5055
<li class="header__menu-item dropdown">
5156
<button class="dropdown__label">
5257
<a href="/about" class="no-style-a">About</a>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.enterprise-cta {
2+
margin: 48px 0;
3+
display: flex;
4+
flex-direction: column;
5+
align-items: flex-start;
6+
gap: 16px;
7+
8+
&__button {
9+
display: inline-block;
10+
padding: 14px 28px;
11+
background: linear-gradient(45deg, #5b7965 0%, #f4c403 100%);
12+
color: #fff;
13+
font-weight: bold;
14+
font-size: 1rem;
15+
text-decoration: none;
16+
border-radius: 50px;
17+
transition: opacity 0.3s ease, transform 0.2s ease;
18+
border: none;
19+
cursor: pointer;
20+
21+
&:hover {
22+
opacity: 0.9;
23+
transform: translateY(-2px);
24+
color: #fff;
25+
}
26+
}
27+
28+
&__note {
29+
font-size: 0.9rem;
30+
color: #666;
31+
32+
a {
33+
color: #5b7965;
34+
font-weight: bold;
35+
text-decoration: none;
36+
37+
&:hover {
38+
text-decoration: underline;
39+
}
40+
}
41+
}
42+
}

css/scss/style.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
@use 'layout/welcome';
55
@use "components/dropdown";
66
@use "components/banner-image";
7+
@use "components/enterprise-cta";
78
@use "themes/markdown";
89
@use "themes/devops-maturity";
910
@use "vendors/github-markdown-css";

css/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

en/sitemap.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@
2727
hreflang="en"
2828
href="/categories/"
2929
/>
30+
</url><url>
31+
<loc>/enterprise/</loc>
32+
<xhtml:link
33+
rel="alternate"
34+
hreflang="zh"
35+
href="/zh/enterprise/"
36+
/>
37+
<xhtml:link
38+
rel="alternate"
39+
hreflang="en"
40+
href="/enterprise/"
41+
/>
3042
</url><url>
3143
<loc>/tags/</loc>
3244
<xhtml:link

0 commit comments

Comments
 (0)