2020-06-22 20:36:41 +01:00
extends layout
block nav-links
2021-09-11 21:32:23 +01:00
a(href='/')
li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span Home
2021-09-11 21:32:23 +01:00
a(href='#')
li(class="py-3 bg-black text-green hover:bg-pink hover:text-black transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span About
2021-09-11 21:32:23 +01:00
a(href='#')
li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span CV
2021-09-11 21:32:23 +01:00
a(href='https://github.com/aurora-dot')
li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span Projects
2021-09-11 21:32:23 +01:00
a(href='https://blog.pastel.codes')
li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span Blog
2021-09-11 21:32:23 +01:00
a(href='/contact')
li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
2020-06-22 20:36:41 +01:00
span Contact
block content
2021-09-11 21:32:23 +01:00
div.mt-5
div.text-lg
h1.font-sans.text-6xl.wavy.mb-10 Hello.
p.mb-5 I’ m E, a 20 year old student in 3rd year of university, who studies computer science & artificial intelligence, somehow achieved a 1:1 for the previous two years.
p.mb-5 In my free time, I create small projects to learn new skills to be helpful for others, recently i have been focusing on Django and tailwind for my job.
p.mb-5 Graphic design is also very fun and i enjoy making small projects to post on instagram, it has helped a lot with UX/UI design for applications.
p.mb-5 Currently I am working as a freelance developer for Bounce Technologies!
div
h1.font-sans.text-6xl.wavy.my-10 Projects.
div
2020-06-27 17:46:21 +01:00
each val in project
2021-09-12 11:48:35 +01:00
div(class="mb-10 text-center sm:text-left")
div.contents
a(href=val.url).contents
2020-06-27 17:46:21 +01:00
if val.feature_image
2021-09-12 11:48:35 +01:00
img(class="sm:w-2/3 mx-auto sm:mx-0" src=val.feature_image)
2020-06-27 17:46:21 +01:00
else
img(src="/images/logo.png")
2021-09-12 11:48:35 +01:00
div.mt-2
2020-06-27 17:46:21 +01:00
a(href=val.url)
2021-09-12 11:48:35 +01:00
span(class="font-sans text-2xl sm:text-3xl mt-3 mb-3") #{val.title}
2021-09-11 21:32:23 +01:00
p.text-lg #{val.excerpt}
2020-06-27 17:46:21 +01:00
2021-09-11 21:32:23 +01:00
div
h1.font-sans.text-6xl.wavy.my-10 Blog.
div
2020-06-27 17:46:21 +01:00
each val in blog
2021-09-12 11:48:35 +01:00
div(class="mb-10 text-center sm:text-left")
div.contents
a(href=val.url).contents
2020-06-27 17:46:21 +01:00
if val.feature_image
2021-09-12 11:48:35 +01:00
img(class="sm:w-2/3 mx-auto sm:mx-0" src=val.feature_image)
2020-06-27 17:46:21 +01:00
else
img(src="/images/logo.png")
2021-09-12 11:48:35 +01:00
div.mt-2
2020-06-27 17:46:21 +01:00
a(href=val.url)
2021-09-12 11:48:35 +01:00
span(class="font-sans text-2xl sm:text-3xl mt-3 mb-3") #{val.title}
2021-09-11 21:32:23 +01:00
p.text-lg #{val.excerpt}