create button, textlink, add icons and font

This commit is contained in:
yzned
2025-07-18 16:17:10 +03:00
committed by yzned
parent 5bb273d4cc
commit ca6dfe6ccb
39 changed files with 2265 additions and 33 deletions

View File

@@ -1,3 +1,4 @@
import { TextLink } from "@/components/ui/text-link";
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/")({
@@ -5,5 +6,9 @@ export const Route = createFileRoute("/")({
});
function App() {
return <div className=""> </div>;
return (
<div className="p-4">
<TextLink>Lable</TextLink>
</div>
);
}