Skip to content

Commit

Permalink
New Portfolio!
Browse files Browse the repository at this point in the history
Created a new portfolio using the latest version of astro.
  • Loading branch information
jsanzdev committed May 2, 2024
1 parent d6bef60 commit 98984fe
Show file tree
Hide file tree
Showing 117 changed files with 6,774 additions and 23,491 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# build output
dist/
.output/
# generated types
.astro/

# dependencies
node_modules/
Expand All @@ -17,4 +18,7 @@ pnpm-debug.log*
.env.production

# macOS-specific files
.DS_Store
.DS_Store

# jetbrains setting folder
.idea/
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
21 changes: 0 additions & 21 deletions LICENSE.md

This file was deleted.

31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# Jesus Sanz's Portfolio
# Astro Starter Kit: Portfolio

Website Built with [Astro](https://astro.build/) and [Astrowind](https://astrowind.vercel.app/).]
```sh
npm create astro@latest -- --template portfolio
```

[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/portfolio)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/portfolio)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/portfolio/devcontainer.json)

> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
![portfolio](https://user-images.githubusercontent.com/357379/210779178-a98f0fb7-6b1a-4068-894c-8e1403e26654.jpg)

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## 👀 Want to learn more?

Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
43 changes: 1 addition & 42 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,45 +1,4 @@
import path from 'path';
import { fileURLToPath } from 'url';

import { defineConfig } from 'astro/config';

import tailwind from '@astrojs/tailwind';
import sitemap from '@astrojs/sitemap';
import image from '@astrojs/image';
import partytown from '@astrojs/partytown';

import { SITE } from './src/config.mjs';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

// https://astro.build/config
export default defineConfig({
// Astro uses this full URL to generate your sitemap and canonical URLs in your final build
site: SITE.origin,
base: SITE.basePathname,

output: 'static',

integrations: [
tailwind({
config: {
applyBaseStyles: false,
},
}),
sitemap(),
image(),

/* Disable this integration if you don't use Google Analytics (or other external script). */
partytown({
config: { forward: ['dataLayer.push'] },
}),
],

vite: {
resolve: {
alias: {
'~': path.resolve(__dirname, './src'),
},
},
},
});
export default defineConfig({});
Empty file removed data/.gitkeep
Empty file.
24 changes: 0 additions & 24 deletions data/blog/welcome-to-my-portfolio.md

This file was deleted.

14 changes: 0 additions & 14 deletions data/portfolio/portfolio.md

This file was deleted.

Binary file removed lighthouse-score.png
Binary file not shown.
3 changes: 0 additions & 3 deletions netlify.toml

This file was deleted.

Loading

0 comments on commit 98984fe

Please sign in to comment.