-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
124 lines (119 loc) · 3.47 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { RiComputerLine } from 'react-icons/ri';
import { IProject, IService, ISkill } from './type';
import { FaServer } from 'react-icons/fa';
import { AiOutlineAntDesign, AiOutlineApi } from 'react-icons/ai';
import { MdDeveloperMode } from 'react-icons/md';
import { BsCircleFill } from 'react-icons/bs';
export const services:IService[] = [
{
Icon: RiComputerLine,
title: 'Frontend Dev',
about:
'Using <b> HTML</b>, <b> CSS</b> and <b> React.js</b> to build scalable SPA'
},
{
Icon: FaServer,
title: 'Backend Dev',
about:
'<b>Express</b>, <b>Fastify</b> and other frameworks to handle database, server, api'
},
{
Icon: MdDeveloperMode,
title: 'Open Source love',
about:
'Love to contribute to <i>open source<i> projects whenever I could'
},
{
Icon: AiOutlineAntDesign,
title: 'UI/UX Desiger',
about:
'User interface design using <b>Figma</b>'
},
{
Icon: RiComputerLine,
title: 'Any Tech',
about:
'Love to dive into any tech and challenges associated with it'
},
]
export const languages:ISkill[] = [
{
name: 'C++',
level: '40%',
Icon: BsCircleFill
},
{
name: 'Java Script',
level: '80%',
Icon: BsCircleFill
},
{
name: 'React',
level: '70%',
Icon: BsCircleFill
},
{
name: 'Java',
level: '40%',
Icon: BsCircleFill
}
]
export const tools:ISkill[] = [
{
name: 'Figma',
level: '40%',
Icon: BsCircleFill
},
{
name: 'Docker',
level: '60%',
Icon: BsCircleFill
},
{
name: 'UE4',
level: '30%',
Icon: BsCircleFill
}
]
export const projects:IProject[] = [
{
id: 1,
name: 'Linux Rice',
description: 'Custom Linux Interface using i3wm',
image_path: '/images/firstrice.jpeg',
deployed_url: '',
github_url: 'https://github.com/ashwinchandran13/firstrice',
category: ['scripting'],
key_techs: ['yml', 'shell']
},
{
id: 2,
name: 'SpaceX Launch Tracker',
description: 'New launches by SpaceX tracked using Graphql, Nextjs',
image_path: '/images/spacex-tracker.png',
deployed_url: '',
github_url: 'https://github.com/ashwinchandran13/spacex-graphql-next',
category: ['react'],
key_techs: ['Graphql', 'Nextjs']
},
{
id: 3,
name: 'Redis Simple Search',
description: 'A data entry app to understand the capabilities of using key-value based db using redis-om, redis-search, Nextjs',
image_path: '/images/simple-search.png',
deployed_url: '',
github_url: 'https://github.com/ashwinchandran13/redis-simple-search',
category: ['react', 'node'],
key_techs: ['Redis', 'Nextjs', 'React', 'TailwindCss']
},
{
id: 4,
name: 'Neoito X Matrix ',
description: 'A landing page created in theme to the movie Matrix for a contest held at Neoito using Nextjs, TailwindCss V3, Framer Motion',
image_path: '/images/neoitoxmatrix.png',
deployed_url: 'https://neoitoxmatrix.vercel.app/',
github_url: 'https://github.com/ashwinchandran13/neoitoxmatrix',
category: ['react'],
key_techs: ['Nextjs', 'React', 'TailwindCss', 'Framer Motion']
}
]