forked from GLaDO8/nextjs-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayground.js
113 lines (109 loc) · 3.98 KB
/
playground.js
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
import Image from 'next/image'
import Layout from '@/components/layout'
import Head from 'next/head'
export default function Index() {
return (
<>
<Layout>
<Head>
<title>Playground</title>
<meta
rel="og:description"
content="Miscellaneous visual work and unfinished ideas by Shreyas Gupta"
/>
<meta
name="description"
content="Miscellaneous visual work and unfinished ideas by Shreyas Gupta"
/>
</Head>
<h1 className="page-title-design">Playground</h1>
<div>
<div>
<h2 className="section-title-design">Neue Instagram</h2>
<div className="rounded-xl overflow-hidden">
<Image
src="/images/Instagram-nu.png"
alt="Neumorphic Concept art for Instagram"
width={667}
height={583}
layout="responsive"
/>
</div>
<p className="page-para-design">
2 years back when Neumorphism was trending, I tried my hand out on
learning the style by reimagining Instagram in Neumorphic style.
I'll say it came out pretty well! It's amazing how much difference
just two sets of shadows can bring in. I have glassmorphism,
brutalism and minimalism next!
</p>
</div>
<div>
<h2 className="section-title-design">Iconography</h2>
<div className="rounded-xl overflow-hidden">
<Image
src="/images/icons.png"
alt="Various icons designed with 3D realism in mind"
width={834}
height={454}
layout="responsive"
/>
</div>
<p className="page-para-design">
With the launch of macOS Big Sur and iOS 14, there is a surge in
demand for custom icons! Big Sur introduced depth and shadows to
many default icons, but not all. I decided to take this as an
opportunity to learn shadows, lighting and depth, and created a
few custom icons! All these icons were made using Sketch.
</p>
<p className="page-para-design">
I was also asked to create a logo for Canvasbird, an open-source
organisation building tools for remote learning.
</p>
</div>
<div>
<h2 className="section-title-design">Blender experiments</h2>
<div className="rounded-xl overflow-hidden">
{' '}
<Image
src="/images/donut.png"
alt="3D Donut made in Blender"
width={800}
height={800}
layout="responsive"
/>
</div>
<p className="page-para-design">
I've been meaning to learn Blender for quite some time and I
finally got around to making something. It's just a start, lot of
ideas to explore!
</p>
</div>
<div>
<h2 className="section-title-design">Vector Art</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="rounded-xl overflow-hidden">
<Image
src="/images/lowpolyearth.png"
alt="low ploygon count vector earth"
width={600}
height={600}
layout="responsive"
/>
</div>
<div className="rounded-xl overflow-hidden">
<Image
src="/images/logorender1.png"
alt=""
width={600}
height={600}
layout="responsive"
/>
</div>
</div>
<p className="page-para-design"></p>
</div>
</div>
</Layout>
</>
)
}