Skip to content

Commit

Permalink
feat: new projects loading...
Browse files Browse the repository at this point in the history
  • Loading branch information
jamerrq committed Mar 8, 2024
1 parent 3865d0c commit 70e9760
Show file tree
Hide file tree
Showing 17 changed files with 70 additions and 300 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"**/*.astro"
],
"[astro]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "astro-build.astro-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "dev",
"label": "npm: dev",
"detail": "astro dev --host"
},
{
Expand Down
11 changes: 11 additions & 0 deletions lib/imgs/astro-icon-light-gradient.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions lib/imgs/astro-logo-light-gradient.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/localhost_4321_(iPad Mini) (1).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/localhost_4321_(iPad Mini).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/localhost_4321_(iPhone 12 Pro).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/localhost_8085_(iPad Mini).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/localhost_8085_(iPhone SE).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/imgs/pizarra.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/components/blog/last-entries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ function GenericBadge({ text }: { text: string }) {
// 'amber',
'red',
'teal',
'pink',
'pink'
]
const index = Math.floor(Math.random() * COLORS.length)
return (
<span class={`bg-${COLORS[index]}-100 text-${COLORS[index]}-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-${COLORS[index]}-900 dark:text-${COLORS[index]}-300`}>
<span
class={`bg-${COLORS[index]}-100 text-${COLORS[index]}-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded-full dark:bg-${COLORS[index]}-900 dark:text-${COLORS[index]}-300`}
>
{text}
</span>
)
Expand Down
Loading

0 comments on commit 70e9760

Please sign in to comment.