Skip to content

Commit 1fc5995

Browse files
committed
Add PlainBudget landing
1 parent 14ae934 commit 1fc5995

File tree

18 files changed

+266
-8
lines changed

18 files changed

+266
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ dist-ssr
1313
*.local
1414

1515
# Editor directories and files
16-
.vscode/*
1716
!.vscode/extensions.json
1817
.idea
1918
.DS_Store

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"search.exclude": {
3+
"**/.git": true,
4+
"**/node_modules": true,
5+
"**/docs": true,
6+
"**/dist": true,
7+
"**/tmp": true
8+
},
9+
"editor.formatOnSave": true
10+
}
Lines changed: 1 addition & 0 deletions
Loading

public/assets/images/iphone.png

51.1 KB
Loading
19.2 KB
Loading
32.6 KB
Loading
20.9 KB
Loading

src/assets/scss/global.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ code {
2222

2323
img {
2424
vertical-align: top;
25+
-webkit-user-drag: none;
2526
}
2627

2728
a {

src/components/App/index.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
&__page {
1010
padding: var(--size-xl) 0;
1111
flex: 1;
12+
display: flex;
13+
flex-direction: column;
1214
}
1315

1416
&__effects {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Project } from '@/interfaces/Project'
1+
import { Platform } from '@/enums/Platform'
22

33
export interface Props {
4-
projects: Project[]
4+
projects: { title: string; description: string; href: string; image: string; platforms: Platform[] }[]
55
size?: 'large' | 'small'
66
}

0 commit comments

Comments
 (0)