mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
3.9 KiB
157 lines
3.9 KiB
import React from "react";
|
|
|
|
const sampleText = (
|
|
<div>
|
|
This is gonna have some text, probably a story about what I did here.
|
|
Apollonius of Perga rich in heavy atoms great turbulent clouds citizens of
|
|
distant epochs the only home we've ever known hydrogen atoms? Bits of moving
|
|
fluff two ghostly white figures in coveralls and helmets are softly dancing
|
|
a still more glorious dawn awaits hearts of the stars extraordinary claims
|
|
require extraordinary evidence a very small stage in a vast cosmic arena.
|
|
</div>
|
|
);
|
|
|
|
export const experience = [
|
|
{
|
|
title: "The Feathers",
|
|
slug: "thefeathers",
|
|
location: "Chennai (formerly Tirunelveli, Ooty)",
|
|
position: "Founder (Creative Collective)",
|
|
year: "2011-19",
|
|
tags: ["Programming", "Film", "Photography", "Design", "Writing"],
|
|
description: (
|
|
<div>
|
|
<p>
|
|
The Feathers was a creative collective, comprising mostly of students
|
|
and amateur artists and entertainers pursuing various creative
|
|
endeavours.
|
|
</p>
|
|
<p>
|
|
This varied from photography, typography, graphic design, short films,
|
|
music, to ad films and event coverage.
|
|
</p>
|
|
<p>
|
|
It was an early attempt at creating something out of pure passion, and
|
|
gave rise to such projects as StudioFlicks, OutFocus, and the like.
|
|
</p>
|
|
<p>
|
|
It gives me immense pride and joy to see former members go on to build
|
|
amazing careers and pursue interests.
|
|
</p>
|
|
</div>
|
|
),
|
|
logo: "TheFeathers.png",
|
|
},
|
|
{
|
|
title: "StudioFlicks",
|
|
slug: "studioflicks",
|
|
location: "Remote (Coimbatore)",
|
|
position: "Co-founder & Creative Head",
|
|
year: "2013-15",
|
|
tags: ["Design", "Writing"],
|
|
description: sampleText,
|
|
logo: "StudioFlicks.png",
|
|
},
|
|
{
|
|
title: "Vinzas",
|
|
slug: "vinzas",
|
|
location: "Chennai",
|
|
position: "Architectural Intern",
|
|
year: "2014",
|
|
tags: ["Architecture"],
|
|
description: sampleText,
|
|
logo: "Vinzas.png",
|
|
},
|
|
{
|
|
title: "Blue Cube",
|
|
slug: "bluecube",
|
|
location: "Chennai",
|
|
position: "Architectural Intern",
|
|
year: "2015",
|
|
tags: ["Architecture"],
|
|
description: sampleText,
|
|
logo: "BlueCube.png",
|
|
},
|
|
{
|
|
title: "OutFocus Magazine",
|
|
slug: "outfocus",
|
|
location: "Ooty",
|
|
position: "Editor / Developer",
|
|
year: "2014-17",
|
|
tags: ["Design", "Programming", "Writing"],
|
|
description: sampleText,
|
|
logo: "OutFocus.png",
|
|
},
|
|
{
|
|
title: "Zoho",
|
|
slug: "zoho",
|
|
location: "Chennai",
|
|
position: "Technical Content Writer",
|
|
year: "2017",
|
|
tags: ["Writing"],
|
|
description: sampleText,
|
|
logo: "Zoho.png",
|
|
},
|
|
{
|
|
title: "Manoj Exports",
|
|
slug: "manoj",
|
|
location: "Chennai",
|
|
position: "Designer & Web Dev",
|
|
year: "2017",
|
|
tags: ["Design", "Programming"],
|
|
description: sampleText,
|
|
logo: "ManojExports.png",
|
|
},
|
|
{
|
|
title: "Klenty",
|
|
slug: "klenty",
|
|
location: "Chennai",
|
|
position: "Full Stack Developer",
|
|
year: "2018",
|
|
tags: ["Programming"],
|
|
description: sampleText,
|
|
logo: "Klenty.png",
|
|
},
|
|
{
|
|
title: "Hugo's Way",
|
|
slug: "hugosway",
|
|
location: "Remote (Dublin)",
|
|
position: "Full Stack Developer",
|
|
year: "2018-19",
|
|
tags: ["Programming"],
|
|
description: sampleText,
|
|
logo: "Hugosway.png",
|
|
},
|
|
{
|
|
title: "Navana Tech",
|
|
slug: "navana",
|
|
location: "Remote (Mumbai)",
|
|
position: "Lead Web Dev & Architect",
|
|
year: "2021-22",
|
|
tags: ["Programming", "Design"],
|
|
description: sampleText,
|
|
logo: "NavanaTech.png",
|
|
},
|
|
{
|
|
title: "Feathers Studio",
|
|
slug: "feathers-studio",
|
|
location: "Chennai",
|
|
position: "Chief Maker",
|
|
year: "2019-present",
|
|
tags: ["Programming", "Design", "Writing"],
|
|
description: sampleText,
|
|
logo: "FeathersStudio.png",
|
|
},
|
|
].reverse();
|
|
|
|
const getAge = (date: string) => {
|
|
var today = new Date();
|
|
var birthDate = new Date(date);
|
|
var age = today.getFullYear() - birthDate.getFullYear();
|
|
var m = today.getMonth() - birthDate.getMonth();
|
|
if (m < 0) return age - 1;
|
|
if (m === 0 && today.getDate() < birthDate.getDate()) return age - 1;
|
|
return age;
|
|
};
|
|
|
|
export const age = getAge("27 May 1995");
|
|
|