Skip to content

Commit 4fde239

Browse files
committed
WIP
- Image config
1 parent 2edf4f8 commit 4fde239

File tree

13 files changed

+745
-2
lines changed

13 files changed

+745
-2
lines changed

site/templates/about.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
@foreach ($page->social()->toStructure() as $social)
1111
<a href="{{ $social->url() }}" class="social-icon">
1212
@if (in_array(strtolower($social->platform()), ['linkedin']))
13-
<img src="public/images/linkedin.png" alt="LinkedIn Icon" class="w-8 h-8 object-cover rounded shadow-lg">
13+
<img src="images/linkedin.png" alt="LinkedIn Icon" class="w-8 h-8 object-cover rounded shadow-lg">
1414
@elseif (in_array(strtolower($social->platform()), ['twitter', 'x']))
15-
<img src="public/images/x.png" alt="Twitter Icon" class="w-8 h-8 object-cover rounded shadow-lg">
15+
<img src="images/x.png" alt="Twitter Icon" class="w-8 h-8 object-cover rounded shadow-lg">
1616
@endif
1717
</a>
1818
@endforeach

vite/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

vite/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Vue 3 + Vite
2+
3+
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4+
5+
While this project uses Vue.js, Vite supports many popular JS frameworks. [See all the supported frameworks](https://vitejs.dev/guide/#scaffolding-your-first-vite-project).
6+
7+
## Deploy Your Own
8+
9+
Deploy your own Vite project with Vercel.
10+
11+
[![Deploy with Vercel](https://vercel.com/button)]([https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/vite&template=vite](https://vercel.com/new/clone?demo-description=Vite%2FVue.js%20site%20that%20can%20be%20deployed%20to%20Vercel&demo-image=%2F%2Fimages.ctfassets.net%2Fe5382hct74si%2F2T4BUF3mEBKPJF3jcjU6nS%2F0d4a02e7c48091d13814a4ab513e8734%2FScreen_Shot_2022-04-13_at_10.05.56_PM.png&demo-title=Vite%20-%20Vue&demo-url=https%3A%2F%2Fvite-vue-template.vercel.app%2F&from=templates&project-name=Vite%20-%20Vue&repository-name=vite-vue&repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fvercel%2Ftree%2Fmain%2Fexamples%2Fvite&skippable-integrations=1))
12+
13+
_Live Example: https://vite-vue-template.vercel.app_
14+
15+
### Deploying From Your Terminal
16+
17+
You can deploy your new Vite project with a single command from your terminal using [Vercel CLI](https://vercel.com/download):
18+
19+
```shell
20+
$ vercel
21+
```

vite/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + Vue</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

vite/package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "vite",
3+
"version": "0.0.0",
4+
"type": "module",
5+
"scripts": {
6+
"dev": "vite",
7+
"build": "vite build",
8+
"preview": "vite preview"
9+
},
10+
"dependencies": {
11+
"vue": "^3.2.45"
12+
},
13+
"devDependencies": {
14+
"@vitejs/plugin-vue": "^4.0.0",
15+
"vite": "^4.1.0"
16+
}
17+
}

0 commit comments

Comments
 (0)