init
This commit is contained in:
24
resources/js/pages/welcome.tsx
Normal file
24
resources/js/pages/welcome.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user