-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
298c8ff
commit 7f3a137
Showing
5 changed files
with
74 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<div | ||
class="flex w-full mt-6 pt-6 px-5 flex-col font-poppins items-center justify-center text-white bg-gradient-to-b from-blue-900 via-gray-900 to-black" | ||
> | ||
<div | ||
class="flex flex-col items-center justify-center gap-4 w-full max-w-xl rounded-md animate-fadein" | ||
> | ||
<div class="rounded-md mb-4 transition-all w-full flex"> | ||
<div class="flex flex-col items-center"> | ||
<div class="text-3xl md:text-4xl font-bold mb-2 w-full">Hey, I'm Kicks</div> | ||
<div class="text-xl md:text-2xl"> | ||
I enjoy programming using C#, TypeScript/JavaScript, and HTML/CSS | ||
</div> | ||
</div> | ||
</div> | ||
<div class="rounded-md mb-4 transition-all w-full flex gap-6"> | ||
<a href="https://github.com/Nolankicks"> | ||
<img | ||
src="github-mark.png" | ||
alt="GitHub" | ||
class="bg-cover h-12 w-12 hover:scale-105 active:scale-95 transition-all" | ||
/> | ||
</a> | ||
<a href="https://sbox.game/nolankicks"> | ||
<img | ||
src="sbox.png" | ||
alt="S&Box" | ||
class="bg-cover rounded-md h-12 w-12 hover:scale-105 active:scale-95 transition-all" | ||
/> | ||
</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module.exports = { | ||
content: [ | ||
'./src/**/*.{html,js,svelte,ts}', | ||
], | ||
theme: { | ||
colors: { | ||
white: '#e2e2e2', | ||
theme: 'rgb(29, 30, 32)', | ||
secondary: 'rgb(46, 46, 51)', | ||
tertiary: '#0092ff', | ||
black: '#000000', | ||
gray: '#e2e2e2', | ||
kindagrey: '#f2f2f2', | ||
lightblue: '#0092ff', | ||
transparent: 'transparent', | ||
}, | ||
screens: { | ||
'xs': '375px', | ||
|
||
'sm': '640px', | ||
|
||
'md': '768px', | ||
|
||
'lg': '1024px', | ||
|
||
'xl': '1280px', | ||
|
||
'2xl': '1536px', | ||
}, | ||
extend: { | ||
fontFamily: { | ||
poppins: ['Poppins', 'sans-serif'] | ||
} | ||
}, | ||
}, | ||
plugins: [ | ||
require('@tailwindcss/typography'), // Ensure you have the typography plugin installed | ||
], | ||
}; |