refactor: auto format
This commit is contained in:
parent
934011b72f
commit
89145ceca8
11 changed files with 47 additions and 47 deletions
|
@ -24,7 +24,6 @@ function Footer() {
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,14 +17,16 @@ function Resume({
|
||||||
<li key={e.position}>
|
<li key={e.position}>
|
||||||
<a href={'#' + e.position}>{e.position}</a>
|
<a href={'#' + e.position}>{e.position}</a>
|
||||||
</li>
|
</li>
|
||||||
)}</ol></li>
|
)}
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
<li><a href='#competencies'>Competencies</a></li>
|
<li><a href='#competencies'>Competencies</a></li>
|
||||||
<li><a href='#competencies'>Certifications</a></li>
|
<li><a href='#competencies'>Certifications</a></li>
|
||||||
<li><a href='#languages'>Languages</a></li>
|
<li><a href='#languages'>Languages</a></li>
|
||||||
<li><a href='#education'>Education</a></li>
|
<li><a href='#education'>Education</a></li>
|
||||||
</ol>
|
</ol>
|
||||||
<div>
|
<div>
|
||||||
<h2 id="experience">Professional experience</h2>
|
<h2 id='experience'>Professional experience</h2>
|
||||||
|
|
||||||
{experience.map((exp, i) => (
|
{experience.map((exp, i) => (
|
||||||
<WorkExperience
|
<WorkExperience
|
||||||
|
@ -39,14 +41,14 @@ function Resume({
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div className='sidebar'>
|
<div className='sidebar'>
|
||||||
<h2 id="competencies">Competencies</h2>
|
<h2 id='competencies'>Competencies</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{competencies.sort().map((c, i) => (
|
{competencies.sort().map((c, i) => (
|
||||||
<li key={i}>{c}</li>
|
<li key={i}>{c}</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2 id="certifications">Certifications</h2>
|
<h2 id='certifications'>Certifications</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{certifications.sort().map((c, i) => (
|
{certifications.sort().map((c, i) => (
|
||||||
<li key={i}>{c}</li>
|
<li key={i}>{c}</li>
|
||||||
|
@ -70,7 +72,7 @@ function Resume({
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Resume;
|
export default Resume
|
||||||
|
|
||||||
function WorkExperience ({ position, employer, start, end, children }) {
|
function WorkExperience ({ position, employer, start, end, children }) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { formatDate } from "@/lib/helpers";
|
import { formatDate } from '@/lib/helpers'
|
||||||
import Link from "next/link";
|
import Link from 'next/link'
|
||||||
|
|
||||||
export default function StaticContentList ({ entries, urlPrefix }) {
|
export default function StaticContentList ({ entries, urlPrefix }) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -53,10 +53,10 @@ export function getStaticEntryProps (contentPath, { params }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getStaticEntries (contentPath) {
|
export function getStaticEntries (contentPath) {
|
||||||
const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true });
|
const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true })
|
||||||
return directoryItems.map((dirent) =>
|
return directoryItems.map((dirent) =>
|
||||||
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
|
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
|
||||||
).sort((a, b) =>
|
).sort((a, b) =>
|
||||||
new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime()
|
new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime()
|
||||||
);
|
)
|
||||||
}
|
}
|
|
@ -4,7 +4,7 @@ export default function Document () {
|
||||||
return (
|
return (
|
||||||
<Html lang='en'>
|
<Html lang='en'>
|
||||||
<Head>
|
<Head>
|
||||||
<link rel="stylesheet" href="https://neat.joeldare.com/neat.css"/>
|
<link rel='stylesheet' href='https://neat.joeldare.com/neat.css' />
|
||||||
</Head>
|
</Head>
|
||||||
<body>
|
<body>
|
||||||
<Main />
|
<Main />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import ExternalLink from "@/components/ExternalLink/ExternalLink";
|
import ExternalLink from '@/components/ExternalLink/ExternalLink'
|
||||||
import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout";
|
import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
|
|
||||||
export default function About () {
|
export default function About () {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -20,7 +20,7 @@ function ResumePage ({
|
||||||
<NextSeo
|
<NextSeo
|
||||||
title={Title} openGraph={
|
title={Title} openGraph={
|
||||||
{
|
{
|
||||||
title: Title,
|
title: Title
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { getStaticEntries } from '@/lib/content'
|
||||||
|
|
||||||
export const getStaticProps = () => ({
|
export const getStaticProps = () => ({
|
||||||
props: {
|
props: {
|
||||||
postEntries: getStaticEntries("content/writing")
|
postEntries: getStaticEntries('content/writing')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ export default function Home({ postEntries }) {
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>Recent posts</h2>
|
<h2>Recent posts</h2>
|
||||||
<StaticContentList entries={postEntries} urlPrefix={"writing/"} />
|
<StaticContentList entries={postEntries} urlPrefix='writing/' />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</DefaultLayout>
|
</DefaultLayout>
|
||||||
|
|
|
@ -6,28 +6,27 @@ import StaticContentList from '@/components/StaticContentList/StaticContentList'
|
||||||
|
|
||||||
export const getStaticProps = () => ({
|
export const getStaticProps = () => ({
|
||||||
props: {
|
props: {
|
||||||
postEntries: getStaticEntries("./content/writing")
|
postEntries: getStaticEntries('./content/writing')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
export const Title = 'Writing'
|
export const Title = 'Writing'
|
||||||
|
|
||||||
export default function Writing ({ postEntries }) {
|
export default function Writing ({ postEntries }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DefaultLayout>
|
<DefaultLayout>
|
||||||
<NextSeo
|
<NextSeo
|
||||||
title={Title}
|
title={Title}
|
||||||
openGraph={
|
openGraph={
|
||||||
{
|
{
|
||||||
title: Title,
|
title: Title
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<h1>{Title}</h1>
|
<h1>{Title}</h1>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<StaticContentList entries={postEntries} urlPrefix={'writing/'} />
|
<StaticContentList entries={postEntries} urlPrefix='writing/' />
|
||||||
</section>
|
</section>
|
||||||
</DefaultLayout>
|
</DefaultLayout>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue