my-website/resources/views/partials/hero.blade.php

34 lines
1.3 KiB
PHP
Raw Normal View History

2024-02-18 15:16:41 +02:00
<section class="bg-gray-900 text-white">
<div class="mx-auto max-w-screen-xl px-4 py-32 lg:flex lg:h-screen lg:items-center">
<div class="mx-auto max-w-3xl text-center">
<h1
class="bg-gradient-to-r from-green-300 via-blue-500 to-purple-600 bg-clip-text text-3xl font-extrabold text-transparent sm:text-5xl"
>
2024-02-19 14:45:41 +02:00
Welcome to S.K Website
2024-02-18 15:16:41 +02:00
2024-02-19 14:45:41 +02:00
<span class="sm:block"> Pen Test Specialist </span>
2024-02-18 15:16:41 +02:00
</h1>
<p class="mx-auto mt-4 max-w-xl sm:text-xl/relaxed">
2024-02-19 14:45:41 +02:00
hello guys, this website is an example of what i can do in PHP
Hope you like it:)
2024-02-18 15:16:41 +02:00
</p>
<div class="mt-8 flex flex-wrap justify-center gap-4">
<a
class="block w-full rounded border border-blue-600 bg-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-transparent hover:text-white focus:outline-none focus:ring active:text-opacity-75 sm:w-auto"
2024-02-19 14:45:41 +02:00
href="/loveit"
2024-02-18 15:16:41 +02:00
>
2024-02-19 14:45:41 +02:00
Loved It!
2024-02-18 15:16:41 +02:00
</a>
<a
class="block w-full rounded border border-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-blue-600 focus:outline-none focus:ring active:bg-blue-500 sm:w-auto"
2024-02-19 14:45:41 +02:00
href="/nonotype"
2024-02-18 15:16:41 +02:00
>
2024-02-19 14:45:41 +02:00
Not My Type:(
2024-02-18 15:16:41 +02:00
</a>
</div>
</div>
</div>
</section>