Skip to content

Commit

Permalink
fix: update personal information
Browse files Browse the repository at this point in the history
  • Loading branch information
aulianza committed Nov 11, 2023
1 parent fb457a7 commit 96b710b
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 34 deletions.
Binary file added public/images/careers/seeru.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/common/components/elements/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Status = () => {
transition={{ duration: 0.5, repeat: Infinity }}
/>
<span className='text-sm text-neutral-600 dark:text-neutral-400 font-sora font-thin'>
available for hire
Open for collabs!
</span>
</div>
);
Expand Down
34 changes: 15 additions & 19 deletions src/common/constant/about.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
const currentYear = new Date().getFullYear();
const workStart = 2019;
const codingStart = 2014;

export const ABOUT = `
<p>
Hi!, I'm Ryan, also known as aulianza, an experienced software engineer, specializing in frontend development, with ${
currentYear - workStart
} years of professional experience and a total of ${
currentYear - codingStart
} years in web development since ${codingStart}. Skilled in JavaScript, TypeScript, and PHP, with proficiency in various web frameworks.
Hi there! Thanks for visiting my personal website.
</p>
<p>
Throughout my career, I have demonstrated a strong ability to
transform design concepts into seamless and interactive user
interfaces. With a keen eye for detail and a passion for delivering
exceptional user experiences, I excel at implementing responsive
designs that adapt to various devices and screen sizes.
I'm Ryan. With over 10+ years of experience in Web Development, covering both frontend and backend, I'm well-versed in Project Management methods like Waterfall and Agile. I'm particularly passionate about frontend side, where I focus on creating web applications that are not only precise but also user-friendly experiences.
</p>
<p>
Constantly staying updated with the latest industry trends and best
practices, I am committed to delivering cutting-edge solutions that
meet and exceed company expectations. My strong problem-solving skills
and attention to detail enable me to tackle complex challenges and
drive innovation in every project I undertake.
I specialize in JavaScript and PHP, also it's frameworks, including React (Next.js, Vite), Vue (Nuxt.js), Angular, Node.js, and PHP (Codeigniter, Laravel). I love exploring new web technologies and features.
</p>
<p>
Throughout my career, I've successfully overseen various Software Engineering Projects for different companies, from giants company like Gama Plantation, dynamic ventures like Paper.id, and forward-thinking startups like Sirka.
</p>
<p>
I firmly believe that effective communication is vital for success in any role.
</p>
<p>
I'm adaptable, think efficiently, and always strive for excellence. My experience has equipped me with strong analytical skills and leadership abilities, and I'm equally comfortable working collaboratively in a team. I'm excited about the opportunity to contribute to the team's success.
</p>
<p>
Looking forward to the possibility of collaboration!
</p>
`;
38 changes: 25 additions & 13 deletions src/common/constant/careers.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,35 @@
import { CareerProps } from '../types/careers';

export const CAREERS: CareerProps[] = [
{
position: 'Full Stack Engineer',
company: 'Seeru',
logo: '/images/careers/seeru.webp',
location: 'Dubai, UAE',
location_type: 'Remote',
type: 'Fulltime',
start_date: '2023-11',
end_date: null,
industry: 'ota',
link: 'https://seeru.com',
},
{
position: 'Lead Frontend Engineer',
company: 'Sirka.io',
logo: '/images/careers/sirka.png',
location: 'Jakarta',
location: 'Jakarta, ID',
location_type: 'Remote',
type: 'Fulltime',
start_date: '2022-03',
end_date: null,
end_date: '2023-12',
industry: 'wellness',
link: 'https://sirka.io',
},
{
position: 'Sr. Frontend Engineer',
position: 'Senior Frontend Engineer',
company: 'Sirka.io',
logo: '/images/careers/sirka.png',
location: 'Jakarta',
location: 'Jakarta, ID',
location_type: 'Remote',
type: 'Fulltime',
start_date: '2021-12',
Expand All @@ -29,7 +41,7 @@ export const CAREERS: CareerProps[] = [
position: 'Co-Founder & CTO',
company: 'FlexCode',
logo: '/images/careers/flexcode.png',
location: 'Jakarta',
location: 'Jakarta, ID',
location_type: 'Remote',
type: 'Fulltime',
start_date: '2021-01',
Expand All @@ -41,7 +53,7 @@ export const CAREERS: CareerProps[] = [
position: 'Frontend Developer',
company: 'Paper.id',
logo: '/images/careers/paper-id.png',
location: 'Jakarta',
location: 'Jakarta, ID',
location_type: 'Hybrid',
type: 'Fulltime',
start_date: '2020-02',
Expand All @@ -50,10 +62,10 @@ export const CAREERS: CareerProps[] = [
link: 'https://paper.id',
},
{
position: 'Full-Stack Developer',
position: 'Full Stack Developer',
company: 'Gama Plantation',
logo: '/images/careers/kpn.png',
location: 'Jakarta',
location: 'Jakarta, ID',
location_type: 'Onsite',
type: 'Fulltime',
start_date: '2019-09',
Expand All @@ -62,10 +74,10 @@ export const CAREERS: CareerProps[] = [
link: 'https://www.linkedin.com/company/pt-gama-plantation',
},
{
position: 'Full-Stack Developer',
position: 'Full Stack Developer',
company: 'Rencong Network',
logo: '/images/careers/rencong.png',
location: 'Aceh',
location: 'Aceh, ID',
location_type: 'Onsite',
type: 'Freelance',
start_date: '2014-12',
Expand All @@ -77,7 +89,7 @@ export const CAREERS: CareerProps[] = [
position: 'Web Developer',
company: 'PT. Kuala Nanggroe',
logo: null,
location: 'Aceh',
location: 'Aceh, ID',
location_type: 'Onsite',
type: 'Part-time',
start_date: '2016-12',
Expand All @@ -87,9 +99,9 @@ export const CAREERS: CareerProps[] = [
},
{
position: 'Web Developer',
company: 'Ruhul Islam Anak Bangsa',
company: 'MA Ruhul Islam',
logo: '/images/careers/riab.png',
location: 'Aceh',
location: 'Aceh, ID',
location_type: 'Onsite',
type: 'Part-time',
start_date: '2015-01',
Expand Down
5 changes: 4 additions & 1 deletion src/modules/home/components/Introduction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ const Introduction = () => {
</div>
<div className='space-y-4'>
<ul className='flex flex-col lg:flex-row gap-1 lg:gap-10 ml-5 list-disc text-neutral-700 dark:text-neutral-400'>
<li>Working Remotely</li>
<li>
Based in Jakarta, Indonesia <span className='ml-1'>🇮🇩</span>
</li>
<li>
Working Remotely for a Dubai-based startup
<span className='ml-1.5'>🇦🇪</span>
</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 96b710b

Please sign in to comment.