-
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
25dc3b9
commit 01ed72b
Showing
4 changed files
with
101 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,40 @@ | ||
import { clsx, type ClassValue } from "clsx" | ||
import { twMerge } from "tailwind-merge" | ||
import { Clock, Globe, Network, Type, Variable, Wand2 } from 'lucide-react' | ||
|
||
export function cn(...inputs: ClassValue[]) { | ||
return twMerge(clsx(inputs)) | ||
} | ||
|
||
export const features = [ | ||
{ | ||
name: 'Simple Syntax', | ||
description: 'Write clean, readable code with an intuitive syntax inspired by modern programming practices.', | ||
icon: Type, | ||
}, | ||
{ | ||
name: 'Built-in Networking', | ||
description: 'Powerful networking capabilities with the built-in net module for HTTP operations.', | ||
icon: Network, | ||
}, | ||
{ | ||
name: 'Time Operations', | ||
description: 'Comprehensive time manipulation and formatting with the native time module.', | ||
icon: Clock, | ||
}, | ||
{ | ||
name: 'Dynamic Typing', | ||
description: 'Flexible type system with built-in type conversion and checking capabilities.', | ||
icon: Variable, | ||
}, | ||
{ | ||
name: 'Go-Powered', | ||
description: 'Built with Go, ensuring high performance and reliable execution.', | ||
icon: Wand2, | ||
}, | ||
{ | ||
name: 'Global Community', | ||
description: 'Join a growing community of developers building with VintLang.', | ||
icon: Globe, | ||
}, | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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