-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs are now integrated into the website, along with a basic implemen…
…tation of the install page and tools page, changed assets, and improved seo.
- Loading branch information
Showing
21 changed files
with
299 additions
and
36 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Installation | ||
--- | ||
|
||
how to install or work on helix |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Helios | ||
--- | ||
|
||
helios the package manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Helix AI | ||
--- | ||
|
||
the subsytem toolchain that allows for a custom ai model to run locally and opimize raw llvm ir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Helix Analyzer | ||
--- | ||
|
||
LSP support for helix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
import Container from "@components/container.astro"; | ||
import Faq from "@components/faq.astro"; | ||
import Logos from "@components/logos.astro"; | ||
import Pricing from "@components/pricing.astro"; | ||
import Sectionhead from "@components/sectionhead.astro"; | ||
import Layout from "@layouts/Layout.astro"; | ||
import { changeLanguage } from "i18next"; | ||
changeLanguage("en"); | ||
const pricingData = [ | ||
{ | ||
name: "IDE Intergration", | ||
price: "Helix Analyzer", | ||
popular: false, | ||
features: [ | ||
"Errors, Warnings, and Notes support", | ||
"Can analyze for runtime errors", | ||
"Follows the Language Server Protocall", | ||
"Open-AI/SwaggerUI API refrence", | ||
"Open Source", | ||
], | ||
button: { | ||
text: "Learn More", | ||
link: "docs/reference/helix-analyzer", | ||
}, | ||
}, | ||
{ | ||
name: "Package Manager", | ||
price: "Helios", | ||
popular: true, | ||
features: [ | ||
"Install, and Remove packages with ease", | ||
"Works with pip, cargo, brew, and vcpkg", | ||
"Project manager", | ||
"Build Tool", | ||
"Extensible", | ||
"High Performance", | ||
"Open Source", | ||
], | ||
button: { | ||
text: "Learn More", | ||
link: "docs/reference/helios", | ||
}, | ||
}, | ||
{ | ||
name: "Optimization", | ||
price: "Helix AI", | ||
popular: false, | ||
features: [ | ||
"Uses AI to optimize helix llvm ir", | ||
"Runs AI model locally", | ||
"Produces truly effient code", | ||
"Can result in magnitudets of performance increase", | ||
"Open Source", | ||
], | ||
button: { | ||
text: "Learn More", | ||
link: "docs/reference/helix-ai", | ||
}, | ||
}, | ||
]; | ||
--- | ||
|
||
<Layout title="Pricing"> | ||
<Container> | ||
<Sectionhead> | ||
<Fragment slot="title">Tools</Fragment> | ||
<Fragment slot="desc">Helix comes with great tools inbuilt, such as IDE intergrations and other neet features.</Fragment> | ||
</Sectionhead> | ||
|
||
<div class="grid md:grid-cols-3 gap-10 mx-auto max-w-4xl mt-20"> | ||
{pricingData.map((item) => <Pricing plan={item} />)} | ||
</div> | ||
<!-- <Logos /> --> | ||
<Faq /> | ||
</Container> | ||
</Layout> |
Oops, something went wrong.