Skip to content

Commit

Permalink
Update Readme and remove duplicate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
keith-flynn committed Oct 15, 2023
1 parent 8c6fd8b commit e335290
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 104 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/main.yml

This file was deleted.

44 changes: 4 additions & 40 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,9 @@
# create-svelte
# Portfolio

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
A portfolio presentation built using SvelteKit, TailwindCSS, Node.js and Express.js


## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
---
[View the Github hosted page deployed through Actions here!](https://keith-flynn.github.io/portfolio-website/)

## About

A portfolio page to show off my works as a developer. Built following [this guide](https://youtu.be/-2UjwQzxvBQ?si=C6Jw2NwWWSj5GDDN) by [James MacArthur](https://github.com/jamezmca)
A portfolio page to show off my works as a developer. Built following [this guide](https://youtu.be/-2UjwQzxvBQ?si=C6Jw2NwWWSj5GDDN) by [James MacArthur](https://github.com/jamezmca)
16 changes: 8 additions & 8 deletions src/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
<h4 class="relative z-9">Login</h4>
</button> -->
<a href="#contact">
<button
class="blueShadow relative overflow-hidden px-5 py-2 group rounded-full bg-white text-slate-950"
>
<div
class="absolute top-0 right-full w-full h-full bg-violet-400 opacity-20 group-hover:translate-x-full z-0 duration-200"
/>
<h4 class="relative z-9">Get in touch</h4>
</button>
<button
class="blueShadow relative overflow-hidden px-5 py-2 group rounded-full bg-white text-slate-950"
>
<div
class="absolute top-0 right-full w-full h-full bg-violet-400 opacity-20 group-hover:translate-x-full z-0 duration-200"
/>
<h4 class="relative z-9">Get in touch</h4>
</button>
</a>
</div>
</header>

0 comments on commit e335290

Please sign in to comment.