Skip to content

Commit b9f2c5d

Browse files
authored
Merge pull request #361 from axivo/docs/website-update
fix: website update
2 parents 8160aac + 7685983 commit b9f2c5d

File tree

9 files changed

+23
-21
lines changed

9 files changed

+23
-21
lines changed

claude/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
module github.com/axivo/website/docs
1+
module github.com/axivo/website/claude
22

33
go 1.25
44

55
require (
6-
github.com/axivo/website/global v1.0.3 // indirect
6+
github.com/axivo/website/global v1.0.4 // indirect
77
github.com/imfing/hextra v0.11.1 // indirect
88
)

claude/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/axivo/website/global v1.0.3 h1:Nk+xFqMyi0mpyVUNYLCy5ALYJniL0i9gUHgc7MazfBU=
2-
github.com/axivo/website/global v1.0.3/go.mod h1:CDxLwZCshxNnTwXh3DR6IncIU2kkvveTSo3AdKTs4cA=
1+
github.com/axivo/website/global v1.0.4 h1:L1xjtlid2sCQKgRi32Crx5rsl9x3iqjLd6zXgiCd/Ag=
2+
github.com/axivo/website/global v1.0.4/go.mod h1:a/BSXKI9qEZ7PwHQJNyNZjqnT6iKwHD+YJg5UzwlVA8=
33
github.com/imfing/hextra v0.11.1 h1:8pTc4ReYbzGTHAnyiebmlT3ijFfIXiGu1r7tM/UGjFI=
44
github.com/imfing/hextra v0.11.1/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=

docs/content/_index.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,34 @@ title: Home
33
layout: hextra-home
44
---
55

6+
<!-- prettier-ignore-start -->
67
{{< hextra/hero-container
78
image="images/logo.svg"
8-
imageClass="hx-block hx-overflow-hidden hx-rounded-3xl"
9+
imageClass="hx:block hx:overflow-hidden hx:rounded-3xl"
910
imageWidth="300" imageHeight="300"
1011
imageTitle="AXIVO"
1112
>}}
12-
<div class="hx-mt-12 hx-mb-6">
13+
<div class="hx:mt-12 hx:mb-6">
1314
{{< hextra/hero-headline >}}
1415
Imagine. Create.
1516
{{< /hextra/hero-headline >}}
1617
</div>
1718

18-
<div class="hx-mt-6 hx-mb-6">
19+
<div class="hx:mt-6 hx:mb-6">
1920
{{< hextra/hero-subtitle >}}
2021
👋 Welcome to our public space.
2122
{{< /hextra/hero-subtitle >}}
2223
</div>
2324

24-
<div class="hx-mt-6 hx-mb-6">
25+
<div class="hx:mt-6 hx:mb-6">
2526
{{< hextra/hero-subtitle >}}
2627
Our goal is to create beautiful projects, empowering engineers to
2728
deliver beautiful software experiences to open-source community.
2829
{{< /hextra/hero-subtitle >}}
2930
</div>
3031
{{< /hextra/hero-container >}}
3132

32-
<div class="hx-mt-6 hx-mb-6">
33+
<div class="hx:mt-6 hx:mb-6">
3334
{{< hextra/hero-section >}}
3435
Latest Projects
3536
{{< /hextra/hero-section >}}
@@ -39,19 +40,20 @@ layout: hextra-home
3940
{{< hextra/feature-card
4041
title="Claude"
4142
subtitle="Scalable collaboration platform for Claude."
42-
class="hx-aspect-auto md:hx-aspect-[1.1/1] max-md:hx-min-h-[340px]"
43+
class="hx:aspect-auto hx:md:aspect-[1.1/1] hx:max-md:min-h-[340px]"
4344
image="/images/card-claude.webp"
44-
imageClass="hx-top-[20%] hx-left-[24px] hx-w-[180%] sm:hx-w-[110%] dark:hx-opacity-80"
45+
imageClass="hx:top-[20%] hx:left-[24px] hx:w-[110%]"
4546
link="/claude/"
46-
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
47+
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.25),hsla(0,0%,100%,0));"
4748
>}}
4849
{{< hextra/feature-card
4950
title="K3s Cluster"
5051
subtitle="High Availability cluster deployed with Ansible."
51-
class="hx-aspect-auto md:hx-aspect-[1.1/1] max-md:hx-min-h-[340px]"
52+
class="hx:aspect-auto hx:md:aspect-[1.1/1] hx:max-md:min-h-[340px]"
5253
image="/images/card-k3s-cluster.webp"
53-
imageClass="hx-top-[20%] hx-left-[24px] hx-w-[180%] sm:hx-w-[110%] dark:hx-opacity-80"
54+
imageClass="hx:top-[20%] hx:left-[24px] hx:w-[110%]"
5455
link="/k3s-cluster/"
55-
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
56+
style="background: radial-gradient(ellipse at 50% 80%,rgba(221,210,59,0.25),hsla(0,0%,100%,0));"
5657
>}}
5758
{{< /hextra/feature-grid >}}
59+
<!-- prettier-ignore-end -->

docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module github.com/axivo/website/docs
33
go 1.25
44

55
require (
6-
github.com/axivo/website/global v1.0.3 // indirect
6+
github.com/axivo/website/global v1.0.4 // indirect
77
github.com/imfing/hextra v0.11.1 // indirect
88
)

docs/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/axivo/website/global v1.0.3 h1:Nk+xFqMyi0mpyVUNYLCy5ALYJniL0i9gUHgc7MazfBU=
2-
github.com/axivo/website/global v1.0.3/go.mod h1:CDxLwZCshxNnTwXh3DR6IncIU2kkvveTSo3AdKTs4cA=
1+
github.com/axivo/website/global v1.0.4 h1:L1xjtlid2sCQKgRi32Crx5rsl9x3iqjLd6zXgiCd/Ag=
2+
github.com/axivo/website/global v1.0.4/go.mod h1:a/BSXKI9qEZ7PwHQJNyNZjqnT6iKwHD+YJg5UzwlVA8=
33
github.com/imfing/hextra v0.11.1 h1:8pTc4ReYbzGTHAnyiebmlT3ijFfIXiGu1r7tM/UGjFI=
44
github.com/imfing/hextra v0.11.1/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=
20.9 KB
Loading

docs/static/images/card.pxd

47.6 KB
Binary file not shown.

k3s-cluster/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module github.com/axivo/website/k3s-cluster
33
go 1.25
44

55
require (
6-
github.com/axivo/website/global v1.0.3 // indirect
6+
github.com/axivo/website/global v1.0.4 // indirect
77
github.com/imfing/hextra v0.11.1 // indirect
88
)

k3s-cluster/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/axivo/website/global v1.0.3 h1:Nk+xFqMyi0mpyVUNYLCy5ALYJniL0i9gUHgc7MazfBU=
2-
github.com/axivo/website/global v1.0.3/go.mod h1:CDxLwZCshxNnTwXh3DR6IncIU2kkvveTSo3AdKTs4cA=
1+
github.com/axivo/website/global v1.0.4 h1:L1xjtlid2sCQKgRi32Crx5rsl9x3iqjLd6zXgiCd/Ag=
2+
github.com/axivo/website/global v1.0.4/go.mod h1:a/BSXKI9qEZ7PwHQJNyNZjqnT6iKwHD+YJg5UzwlVA8=
33
github.com/imfing/hextra v0.11.1 h1:8pTc4ReYbzGTHAnyiebmlT3ijFfIXiGu1r7tM/UGjFI=
44
github.com/imfing/hextra v0.11.1/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=

0 commit comments

Comments
 (0)