-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfb5df2
commit c6167f7
Showing
7 changed files
with
79 additions
and
25 deletions.
There are no files selected for viewing
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,12 @@ | ||
import React from 'react' | ||
import SectionHeader from './SectionHeader' | ||
|
||
const Installation = () => { | ||
return ( | ||
<div className="" id='installation'> | ||
<SectionHeader title="Installation"/> | ||
</div> | ||
) | ||
} | ||
|
||
export default Installation |
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,18 @@ | ||
import SectionHeader from "./SectionHeader"; | ||
|
||
export function Introduction() { | ||
return ( | ||
<div className="space-y-4 mt-10" id=""> | ||
<SectionHeader title="Introduction"/> | ||
<p className="text-xl text-muted-foreground"> | ||
VintLang is a lightweight, expressive programming language designed to simplify modern development. | ||
With its clean syntax and powerful core features, VintLang empowers developers to build anything from quick scripts | ||
to robust enterprise-grade systems effortlessly. | ||
</p> | ||
<p className="text-xl text-muted-foreground"> | ||
Whether you're automating tasks, developing APIs, or crafting interactive applications, VintLang's modular and atomic | ||
principles ensure scalability and maintainability for projects of any size. | ||
</p> | ||
</div> | ||
); | ||
} |
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,15 @@ | ||
import React from "react"; | ||
|
||
interface SectionHeaderProps{ | ||
title:string | ||
} | ||
|
||
const SectionHeader = ({title}:SectionHeaderProps) => { | ||
return ( | ||
<h1 className="text-6xl font-bold tracking-tight dark:text-neutral-300"> | ||
{title} | ||
</h1> | ||
); | ||
}; | ||
|
||
export default SectionHeader; |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import SectionHeader from "./SectionHeader"; | ||
|
||
export function DocsHeader() { | ||
return ( | ||
<div className="space-y-4"> | ||
<h1 className="text-4xl font-bold tracking-tight">Documentation</h1> | ||
<div className="space-y-4 mt-10" id="documentation"> | ||
<SectionHeader title="Documentation"/> | ||
<p className="text-xl text-muted-foreground"> | ||
Welcome to the VintLang v2 documentation! VintLang's atomic approach to programming | ||
scales from a simple <code className="relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm">useState</code> replacement | ||
to an enterprise application with complex requirements. | ||
</p> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
|
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