This commit is contained in:
Patrick Alvin Alcala 2025-11-26 10:56:07 +08:00
parent d61b8b7bd8
commit 46783c4f38
57 changed files with 4178 additions and 5992 deletions

View file

@ -1,15 +1,17 @@
import { Column, Page } from '~/@dasig'
import Counter from '~/components/Counter'
import './index.sass'
import { Column, Page } from "../../@dasig/index.ts";
import Counter from "../components/Counter.tsx";
import "./index.sass";
export default () => {
return (
<Page title="Dasig - Index">
<Column>
<h1>DASIG</h1>
<h4 class='text'>An architectural framework for pure speed fullstack development</h4>
<h1>DASIG NODE</h1>
<h4 class="text">
An architectural framework for pure speed fullstack development
</h4>
<Counter />
</Column>
</Page>
)
}
);
};