-
Notifications
You must be signed in to change notification settings - Fork 0
docs: Add logo image and style introductory text in introduction.mdx.
#21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,8 +4,19 @@ description: Overview of OtterScale. | |||||||||||||||||
| --- | ||||||||||||||||||
|
|
||||||||||||||||||
| import { Card, CardGrid, LinkCard, Steps, Aside } from '@astrojs/starlight/components'; | ||||||||||||||||||
|
|
||||||||||||||||||
| OtterScale is a **Hyper-Converged Infrastructure (HCI)** platform that unifies compute, storage, networking, and virtualization into a single, software-defined system. By collapsing traditional infrastructure silos, OtterScale simplifies deployment and management while delivering the scalability needed for modern enterprise workloads. | ||||||||||||||||||
| import { Image } from 'astro:assets'; | ||||||||||||||||||
| import logo2 from '../../assets/logo2.png'; | ||||||||||||||||||
|
|
||||||||||||||||||
| <div class="flex gap-6 mb-4 items-start"> | ||||||||||||||||||
| <Image src={logo2} alt="OtterScale Logo" width="200" /> | ||||||||||||||||||
| <div> | ||||||||||||||||||
| <span class="text-xl font-bold">OtterScale</span> is a{' '} | ||||||||||||||||||
| <span class="text-xl font-bold">Hyper-Converged Infrastructure (HCI)</span> | ||||||||||||||||||
|
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For semantic correctness and better accessibility, it's preferable to use the |
||||||||||||||||||
| platform that unifies compute, storage, networking, and virtualization into a single, software-defined | ||||||||||||||||||
| system. By collapsing traditional infrastructure silos, OtterScale simplifies deployment and management | ||||||||||||||||||
|
Comment on lines
+13
to
+16
|
||||||||||||||||||
| <span class="text-xl font-bold">OtterScale</span> is a{' '} | |
| <span class="text-xl font-bold">Hyper-Converged Infrastructure (HCI)</span> | |
| platform that unifies compute, storage, networking, and virtualization into a single, software-defined | |
| system. By collapsing traditional infrastructure silos, OtterScale simplifies deployment and management | |
| <span class="text-xl font-bold">OtterScale</span> is a <span class="text-xl font-bold">Hyper-Converged Infrastructure (HCI)</span> | |
| platform that unifies compute, storage, networking, and virtualization into a single, software-defined | |
| system. By collapsing traditional infrastructure silos, OtterScale simplifies deployment and management | |
| system. By collapsing traditional infrastructure silos, OtterScale simplifies deployment and management |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding a
heightattribute to the Image component to prevent layout shift during page load. For example:<Image src={logo2} alt="OtterScale Logo" width="200" height="200" />(adjust the height value to match your logo's aspect ratio).