remove references from cv experience
This commit is contained in:
parent
cd5104bedd
commit
eb0264ca03
10 changed files with 15 additions and 20 deletions
|
@ -30,9 +30,9 @@ const { institution, qualification, grades, isOpen = false } = Astro.props;
|
|||
<p class="my-0 mb-2 font-semibold text-tertiary">
|
||||
{institution}
|
||||
</p>
|
||||
<ul>
|
||||
{grades.map((grade) => <li class="font-light">{grade}</li>)}
|
||||
</ul>
|
||||
<ol class="list-inside list-disc">
|
||||
{grades.map((grade) => <li class="text-tertiary">{grade}</li>)}
|
||||
</ol>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
|
|
|
@ -21,7 +21,7 @@ const skills = await Promise.all(
|
|||
title={entry.data.title}
|
||||
class="h-6 w-auto text-tertiary transition-colors group-hover:text-accent"
|
||||
/>
|
||||
<p class="m-0">{entry.data.title}</p>
|
||||
<p class="m-0 cursor-default">{entry.data.title}</p>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ const work = await Promise.all(
|
|||
{
|
||||
work.map((entry) => (
|
||||
<li class="pb-8 pl-0 last:pb-0">
|
||||
<h3 class="mb-3 mt-4 text-balance text-xl font-semibold text-secondary">
|
||||
<h3 class="mb-1 mt-4 text-balance text-xl font-semibold text-secondary">
|
||||
<span class="text-tertiary">{entry.data.role} at</span>{" "}
|
||||
{entry.data.company}
|
||||
</h3>
|
||||
|
@ -30,11 +30,10 @@ const work = await Promise.all(
|
|||
<entry.Content />
|
||||
</article>
|
||||
{entry.data.article ? (
|
||||
<a
|
||||
class="text-tertiary transition-colors hover:text-accent"
|
||||
href={entry.data.article}
|
||||
>
|
||||
See related project
|
||||
<a href={entry.data.article}>
|
||||
<div class="mt-2 flex flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-2 py-1 text-sm font-medium capitalize text-primary transition-colors hover:bg-accent">
|
||||
View project
|
||||
</div>
|
||||
</a>
|
||||
) : null}
|
||||
</li>
|
||||
|
|
|
@ -10,5 +10,4 @@ Setup and ongoing management of an
|
|||
[online e-commerce store](https://camouflagestore.uk) in addition to creating,
|
||||
editing, and publishing informational
|
||||
[YouTube](https://www.youtube.com/@camouflagestoreuk) and social media content
|
||||
for a family run [outdoors store](/projects/camouflage-store). _Reference:
|
||||
[Steve Passmore](mailto:sales@camouflagestore.uk)._
|
||||
for a family run outdoors store.
|
||||
|
|
|
@ -7,5 +7,4 @@ dateEnd: "2022"
|
|||
|
||||
Product management of an [online store](https://dialledinbikes.com) using
|
||||
WordPress. Additionally, various visual design changes were made to the layout
|
||||
of the site and its content through the use of custom plugins. _Reference:
|
||||
[Simon Pedrick](tel:01803551001)._
|
||||
of the site and its content through the use of custom plugins.
|
||||
|
|
|
@ -8,4 +8,4 @@ dateEnd: "2023"
|
|||
Digital capture of the [historic building](https://paigntonpicturehouse.org) and
|
||||
its artefacts using photogrammetry and 3D laser scanning techniques. Carried out
|
||||
with a University tutor during the restoration of the building as a means of
|
||||
preservation. _Reference: [Joseph Cook](mailto:josephcook@southdevon.ac.uk)._
|
||||
preservation.
|
||||
|
|
|
@ -11,4 +11,3 @@ by controlling related media being displayed onto
|
|||
[The Market Hall](https://real-immersive.realideas.org/market-hall/)’s
|
||||
‘Immersive Dome’. In addition, technical support was also provided to diagnose
|
||||
and fix an item of broadcast hardware which was failing to output any signal.
|
||||
Reference: [Joseph Cook](mailto:josephcook@southdevon.ac.uk).
|
||||
|
|
|
@ -9,4 +9,3 @@ Whilst in secondary school I worked in two fuel stations, gaining experience in
|
|||
working with others and communicating with customers. Initially my job was to
|
||||
unload deliveries, keep products stocked up, and server customers. Later, once I
|
||||
was older, this progressed to assisting in opening and closing up the shop.
|
||||
_Reference: [James Prescott](tel:01803328400)._
|
||||
|
|
|
@ -11,7 +11,7 @@ time there I sat with the designers and developers observing the work they did
|
|||
before going off to create my own designs. These designs were then later turned
|
||||
into [templates](https://webboss.uk/ryman) that customers could use as a
|
||||
launchpad when creating their own site. I used Adobe XD and Photoshop to create
|
||||
the [designs](/projects/webboss) which turned out to be different to what the
|
||||
the designs which turned out to be different to what the
|
||||
rest of the team were using, however I was still able to fit into their team.
|
||||
Upon completion of the week I was invited back to work further over the coming
|
||||
holiday. _Reference: [Jake Smith](tel:01803467678)._
|
||||
holiday.
|
||||
|
|
|
@ -42,7 +42,7 @@ const projects = allProjects
|
|||
{
|
||||
allProjects.length > HOME.HOMESETTINGS!.NUM_PROJECTS_ON_HOMEPAGE ? (
|
||||
<a href="/projects">
|
||||
<div class="mt-8 flex animate-reveal flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-3 py-2 font-medium capitalize text-primary opacity-0 transition-colors duration-300 [animation-delay:0.1s] hover:bg-accent">
|
||||
<div class="mt-8 flex animate-reveal flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-3 py-2 font-medium capitalize text-primary opacity-0 transition-colors [animation-delay:0.1s] hover:bg-accent">
|
||||
View all
|
||||
</div>
|
||||
</a>
|
||||
|
|
Loading…
Add table
Reference in a new issue