-
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.
* feat: contact page * feat: add animation in contact page * refactor: pnpm format * style: contact header * refactor: pnpm format * fix: try to add experimental assets: true * fix: remove experimental * chore: add sharp * refactor: remove screens in tailwind config
- Loading branch information
1 parent
f321178
commit 92ca2cb
Showing
5 changed files
with
288 additions
and
6 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,40 @@ | ||
--- | ||
import Layout from "../../layouts/Layout.astro"; | ||
import { Image } from "astro:assets"; | ||
import isdlogo from "../../assets/isd-logo.png"; | ||
--- | ||
|
||
<Layout title="Contact"> | ||
<main | ||
class="min-h-screen w-full items-center justify-center bg-[#0F0F0F] px-[8%] py-7 lg:px-[3%] lg:py-12" | ||
> | ||
<p class="animate-sliding-left text-2xl font-bold text-white lg:text-4xl"> | ||
Contact | ||
</p> | ||
<div class="mt-7 grid place-items-stretch lg:mt-16 lg:grid-cols-2"> | ||
<div class="flex justify-center lg:justify-start"> | ||
<Image | ||
class="w-[55%] animate-sliding-right rounded-full lg:w-[80%] lg:animate-sliding-left" | ||
src={isdlogo} | ||
alt="isd-logo" | ||
/> | ||
</div> | ||
|
||
<div | ||
class="flex animate-sliding-right flex-col space-y-48 pt-20 text-right lg:h-full lg:justify-between lg:space-y-0 lg:py-10" | ||
> | ||
<div | ||
class="space-y-4 text-xl font-light text-white lg:space-y-12 lg:text-4xl" | ||
> | ||
<p>[email protected]</p> | ||
<p>Instagram</p> | ||
</div> | ||
<div | ||
class="text-6xl font-bold tracking-[.64rem] text-white lg:text-8xl" | ||
> | ||
Get In<br />Touch | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> |
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