Skip to content

Commit 98984fe

Browse files
committed
New Portfolio!
Created a new portfolio using the latest version of astro.
1 parent d6bef60 commit 98984fe

File tree

117 files changed

+6774
-23491
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+6774
-23491
lines changed

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# build output
22
dist/
3-
.output/
3+
# generated types
4+
.astro/
45

56
# dependencies
67
node_modules/
@@ -17,4 +18,7 @@ pnpm-debug.log*
1718
.env.production
1819

1920
# macOS-specific files
20-
.DS_Store
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1-
# Jesus Sanz's Portfolio
1+
# Astro Starter Kit: Portfolio
22

3-
Website Built with [Astro](https://astro.build/) and [Astrowind](https://astrowind.vercel.app/).]
3+
```sh
4+
npm create astro@latest -- --template portfolio
5+
```
6+
7+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/portfolio)
8+
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/portfolio)
9+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/portfolio/devcontainer.json)
10+
11+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
12+
13+
![portfolio](https://user-images.githubusercontent.com/357379/210779178-a98f0fb7-6b1a-4068-894c-8e1403e26654.jpg)
14+
15+
## 🧞 Commands
16+
17+
All commands are run from the root of the project, from a terminal:
18+
19+
| Command | Action |
20+
| :------------------------ | :----------------------------------------------- |
21+
| `npm install` | Installs dependencies |
22+
| `npm run dev` | Starts local dev server at `localhost:4321` |
23+
| `npm run build` | Build your production site to `./dist/` |
24+
| `npm run preview` | Preview your build locally, before deploying |
25+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
26+
| `npm run astro -- --help` | Get help using the Astro CLI |
27+
28+
## 👀 Want to learn more?
29+
30+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

astro.config.mjs

Lines changed: 1 addition & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,4 @@
1-
import path from 'path';
2-
import { fileURLToPath } from 'url';
3-
41
import { defineConfig } from 'astro/config';
52

6-
import tailwind from '@astrojs/tailwind';
7-
import sitemap from '@astrojs/sitemap';
8-
import image from '@astrojs/image';
9-
import partytown from '@astrojs/partytown';
10-
11-
import { SITE } from './src/config.mjs';
12-
13-
const __dirname = path.dirname(fileURLToPath(import.meta.url));
14-
153
// https://astro.build/config
16-
export default defineConfig({
17-
// Astro uses this full URL to generate your sitemap and canonical URLs in your final build
18-
site: SITE.origin,
19-
base: SITE.basePathname,
20-
21-
output: 'static',
22-
23-
integrations: [
24-
tailwind({
25-
config: {
26-
applyBaseStyles: false,
27-
},
28-
}),
29-
sitemap(),
30-
image(),
31-
32-
/* Disable this integration if you don't use Google Analytics (or other external script). */
33-
partytown({
34-
config: { forward: ['dataLayer.push'] },
35-
}),
36-
],
37-
38-
vite: {
39-
resolve: {
40-
alias: {
41-
'~': path.resolve(__dirname, './src'),
42-
},
43-
},
44-
},
45-
});
4+
export default defineConfig({});

data/.gitkeep

Whitespace-only changes.

data/blog/welcome-to-my-portfolio.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

data/portfolio/portfolio.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

lighthouse-score.png

-70.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)