init
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
Chief-spartan-117
2026-01-21 11:13:09 +05:45
commit 972264e361
188 changed files with 27498 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import Header from '@/components/pages/home/Header';
import Social from '@/components/pages/home/Social';
import Layout from '@/layouts/pages/layout';
import { Head } from '@inertiajs/react';
export default function Welcome() {
return (
<>
<Head title="Real solutions for IT and Marketing">
<link rel="preconnect" href="https://fonts.bunny.net" />
<link
href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600"
rel="stylesheet"
/>
</Head>
<Layout>
<div className="">
<Header />
<Social />
</div>
</Layout>
</>
);
}