├── .gitignore
├── README.md
├── package.json
├── public
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.css
├── App.jsx
├── App.test.js
├── components
│ ├── Eight
│ │ ├── Eight.jsx
│ │ └── eight.css
│ ├── Fifth
│ │ ├── Fifth.jsx
│ │ └── fifth.css
│ ├── Fourth
│ │ ├── Fourth.jsx
│ │ └── fourth.css
│ ├── Home
│ │ ├── Home.jsx
│ │ └── home.css
│ ├── Last
│ │ ├── Last.jsx
│ │ └── last.css
│ ├── Nine
│ │ ├── Nine.jsx
│ │ └── nine.css
│ ├── Second
│ │ ├── Second.jsx
│ │ └── second.css
│ ├── Seven
│ │ ├── Seven.jsx
│ │ └── seven.css
│ ├── Six
│ │ ├── Six.jsx
│ │ └── six.css
│ ├── Third
│ │ ├── Third.jsx
│ │ └── third.css
│ ├── assets
│ │ ├── Chaniru.lk.png
│ │ ├── Thumbs.db
│ │ ├── avat1.jpeg
│ │ ├── avat2.jpeg
│ │ ├── avat3.jpeg
│ │ ├── avat4.jpeg
│ │ ├── avat5.jpeg
│ │ ├── avat6.jpeg
│ │ ├── back.jpg
│ │ ├── img-noise-361x370.png
│ │ ├── logoheader.png
│ │ ├── screenshot.png
│ │ ├── stamp.png
│ │ ├── vector1.jpeg
│ │ ├── vector2.jpeg
│ │ ├── vector3.jpeg
│ │ ├── vector4.jpeg
│ │ ├── vector5.jpeg
│ │ ├── vector6.jpeg
│ │ └── vector7.jpeg
│ └── fonts
│ │ ├── Abaddon.woff2
│ │ ├── ITC Garamond Book Narrow.woff2
│ │ ├── ITC Garamond Light Condensed.woff2
│ │ └── SatisficeDemo-w1EGw.woff2
├── index.css
├── index.js
├── logo.svg
├── reportWebVitals.js
└── setupTests.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # This Website was crafted by - @chaniru.lk - Instagram
2 | 
3 |
4 | # About the AUTHOR
5 |
6 |
FOLLOW ME ON INSTAGRAM - @chaniru.lk
7 |
8 | For more designs and inspiring website development /
9 | awwwards remakes :-)
10 |
11 | # Getting Started with Create React App
12 |
13 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
14 |
15 | ## Available Scripts
16 |
17 | In the project directory, you can run:
18 |
19 | ### `yarn start`
20 |
21 | Runs the app in the development mode.\
22 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
23 |
24 | The page will reload when you make changes.\
25 | You may also see any lint errors in the console.
26 |
27 | ### `yarn test`
28 |
29 | Launches the test runner in the interactive watch mode.\
30 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
31 |
32 | ### `yarn build`
33 |
34 | Builds the app for production to the `build` folder.\
35 | It correctly bundles React in production mode and optimizes the build for the best performance.
36 |
37 | The build is minified and the filenames include the hashes.\
38 | Your app is ready to be deployed!
39 |
40 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
41 |
42 | ### `yarn eject`
43 |
44 | **Note: this is a one-way operation. Once you `eject`, you can't go back!**
45 |
46 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
47 |
48 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
49 |
50 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
51 |
52 | ## Learn More
53 |
54 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
55 |
56 | To learn React, check out the [React documentation](https://reactjs.org/).
57 |
58 | ### Code Splitting
59 |
60 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
61 |
62 | ### Analyzing the Bundle Size
63 |
64 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
65 |
66 | ### Making a Progressive Web App
67 |
68 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
69 |
70 | ### Advanced Configuration
71 |
72 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
73 |
74 | ### Deployment
75 |
76 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
77 |
78 | ### `yarn build` fails to minify
79 |
80 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
81 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.14.1",
7 | "@testing-library/react": "^13.0.0",
8 | "@testing-library/user-event": "^13.2.1",
9 | "react": "^18.2.0",
10 | "react-dom": "^18.2.0",
11 | "react-scripts": "5.0.1",
12 | "web-vitals": "^2.1.0"
13 | },
14 | "scripts": {
15 | "start": "react-scripts start",
16 | "build": "react-scripts build",
17 | "test": "react-scripts test",
18 | "eject": "react-scripts eject"
19 | },
20 | "eslintConfig": {
21 | "extends": [
22 | "react-app",
23 | "react-app/jest"
24 | ]
25 | },
26 | "browserslist": {
27 | "production": [
28 | ">0.2%",
29 | "not dead",
30 | "not op_mini all"
31 | ],
32 | "development": [
33 | "last 1 chrome version",
34 | "last 1 firefox version",
35 | "last 1 safari version"
36 | ]
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | Miranda - @chaniru.lk
28 |
29 |
30 |
63 | You need to enable JavaScript to run this app.
64 |
65 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/public/logo512.png
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 | @font-face {
40 | font-family: gramnarrow;
41 | src: url(./components/fonts/ITC\ Garamond\ Book\ Narrow.woff2);
42 | }
43 | @font-face {
44 | font-family: gramlight;
45 | src: url(./components/fonts/ITC\ Garamond\ Light\ Condensed.woff2);
46 | }
47 | @font-face {
48 | font-family: scari;
49 | src: url(./components/fonts/SatisficeDemo-w1EGw.woff2);
50 | }
51 | @font-face {
52 | font-family: albaz;
53 | src: url(./components/fonts/Abaddon.woff2);
54 | }
55 | ::-webkit-scrollbar {
56 | width: 3px;
57 | }
58 | ::-webkit-scrollbar-track {
59 | background: black;
60 | }
61 | ::-webkit-scrollbar-thumb {
62 | background: #c5bdb4;
63 | }
64 | ::-webkit-scrollbar-thumb:hover {
65 | background: #bb6a4c;
66 | }
--------------------------------------------------------------------------------
/src/App.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import '../src/App.css'
3 | import Fourth from "./components/Fourth/Fourth";
4 | import Home from "./components/Home/Home";
5 | import Second from "./components/Second/Second";
6 | import Third from "./components/Third/Third";
7 | import Fifth from "./components/Fifth/Fifth";
8 | import Six from "./components/Six/Six";
9 | import Seven from "./components/Seven/Seven";
10 | import Eight from "./components/Eight/Eight";
11 | import Nine from "./components/Nine/Nine";
12 | import Last from "./components/Last/Last";
13 | const App = () => {
14 | return (
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | );
28 | };
29 |
30 | export default App;
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render( );
6 | const linkElement = screen.getByText(/learn react/i);
7 | expect(linkElement).toBeInTheDocument();
8 | });
9 |
--------------------------------------------------------------------------------
/src/components/Eight/Eight.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./eight.css";
3 | export const Eight = () => {
4 | return (
5 |
6 |
artisan
7 |
8 | Over the past 3+ years, I've teamed up
9 | with high-profile clients and partnets
10 | globally earning mentions & awards from
11 | digital platforms like The FWA,
12 |
13 |
awwwards
14 |
Communication Arts, Site Inspire,
15 | Behance, Codrops and many others
16 | @chaniru.lk - Instagram
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
”
27 |
Follow me on GitHub and Instagram for more work... - chaniru.lk - the change
28 |
@chaniru.lk
29 |
30 |
31 |
”
32 |
You all bend over backwards to get it done. Inside sales and the Account Managers are great! It's your service...you all know that it's not just about taking orders it's about service. Why do we choose you guys - your people, your prices, you're quick and you have a ton of technical knowledge.
33 |
Jared | Rexam
34 |
35 |
36 |
”
37 |
Follow me on GitHub and Instagram for more work... - chaniru.lk - the change
38 |
@chaniru.lk
39 |
40 |
41 |
”
42 |
You answer my questions, always takes care of problems, and I never have a hassle.
43 |
Rex | LNP Engineering Plastics
44 |
45 |
46 |
”
47 |
Follow me on GitHub and Instagram for more work... - chaniru.lk - the change
48 |
@chaniru.lk
49 |
50 |
51 |
52 |
53 | );
54 | };
55 | export default Eight;
--------------------------------------------------------------------------------
/src/components/Eight/eight.css:
--------------------------------------------------------------------------------
1 | .eight{
2 | height: 100vh;
3 | }
4 | .eight-bloc{
5 | position: absolute;
6 | background-color: #1c1b19;
7 | height: 320px;
8 | width: 860px;
9 | left: 2%;
10 | margin-top: 7%;
11 | }
12 | .art{
13 | position: absolute;
14 | color: #c5bdb4;
15 | text-transform: uppercase;
16 | font-family: scari;
17 | font-size: 17em;
18 | margin-top: 12.4%;
19 | left: 3%;
20 | font-stretch: extra-expanded;
21 | transform: scale(1, 1.5);
22 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
23 | -moz-transform: scale(1, 1.5); /* Firefox */
24 | -ms-transform: scale(1, 1.5); /* IE 9+ */
25 | -o-transform: scale(1, 1.5); /* Opera */
26 | }
27 | .art-des{
28 | position: absolute;
29 | color: #1c1b19;
30 | font-family: gramlight;
31 | font-size: 2em;
32 | margin-top: 6.5%;
33 | right: 3%;
34 | }
35 | .awwwards{
36 | position: absolute;
37 | color: #1c1b19;
38 | font-size: 6em;
39 | text-transform: uppercase;
40 | margin-top: 17.5%;
41 | right: 3%;
42 | font-family: scari;
43 | }
44 | .com{
45 | position: absolute;
46 | color: #1c1b19;
47 | font-family: gramlight;
48 | font-size: 2em;
49 | margin-top: 23%;
50 | right: 8%;
51 | }
52 | .testimonials-section {
53 | top: 480px;
54 | height: 500px;
55 | position: relative;
56 | overflow: hidden;
57 | display: -webkit-box;
58 | display: -webkit-flex;
59 | display: -ms-flexbox;
60 | display: flex;
61 | -webkit-flex-flow: row nowrap;
62 | -ms-flex-flow: row nowrap;
63 | flex-flow: row nowrap;
64 | -webkit-box-align: end;
65 | -webkit-align-items: flex-end;
66 | -ms-flex-align: end;
67 | align-items: flex-end;
68 | -webkit-box-pack: center;
69 | -webkit-justify-content: center;
70 | -ms-flex-pack: center;
71 | justify-content: center;
72 | }
73 | .slider__nav {
74 | width: 12px;
75 | height: 12px;
76 | margin: 110px 12px;
77 | border-radius: 50%;
78 | z-index: 10;
79 | outline: 6px solid #bb6a4c;
80 | outline-offset: -6px;
81 | box-shadow: 0 0 0 0 #1c1b19, 0 0 0 0 rgba(51, 51, 51, 0);
82 | cursor: pointer;
83 | -webkit-appearance: none;
84 | -moz-appearance: none;
85 | appearance: none;
86 | -webkit-backface-visibility: hidden;
87 | backface-visibility: hidden;
88 | }
89 | .slider__nav:checked {
90 | -webkit-animation: check 0.4s linear forwards;
91 | animation: check 0.4s linear forwards;
92 | }
93 | .slider__nav:checked:nth-of-type(1) ~ .slider__inner {
94 | left: 0%;
95 | }
96 | .slider__nav:checked:nth-of-type(2) ~ .slider__inner {
97 | left: -100%;
98 | }
99 | .slider__nav:checked:nth-of-type(3) ~ .slider__inner {
100 | left: -200%;
101 | }
102 | .slider__nav:checked:nth-of-type(4) ~ .slider__inner {
103 | left: -300%;
104 | }
105 | .slider__nav:checked:nth-of-type(5) ~ .slider__inner {
106 | left: -400%;
107 | }
108 | .slider__inner {
109 | position: absolute;
110 | top: 80px;
111 | left: 0;
112 | width: 500%;
113 | height: auto;
114 | -webkit-transition: left 0.4s;
115 | transition: left 0.4s;
116 | display: -webkit-box;
117 | display: -webkit-flex;
118 | display: -ms-flexbox;
119 | display: flex;
120 | -webkit-flex-flow: row nowrap;
121 | -ms-flex-flow: row nowrap;
122 | flex-flow: row nowrap;
123 | }
124 | .slider__contents {
125 | height: 100%;
126 | text-align: center;
127 | display: -webkit-box;
128 | display: -webkit-flex;
129 | display: -ms-flexbox;
130 | display: flex;
131 | -webkit-box-flex: 1;
132 | -webkit-flex: 1;
133 | -ms-flex: 1;
134 | flex: 1;
135 | -webkit-flex-flow: column nowrap;
136 | -ms-flex-flow: column nowrap;
137 | flex-flow: column nowrap;
138 | -webkit-box-align: center;
139 | -webkit-align-items: center;
140 | -ms-flex-align: center;
141 | align-items: center;
142 | -webkit-box-pack: center;
143 | -webkit-justify-content: center;
144 | -ms-flex-pack: center;
145 | justify-content: center;
146 | }
147 | .slider__caption {
148 | font-size: 1.5em;
149 | color: #1c1b19;
150 | opacity: 0.7;
151 | font-family: gramlight;
152 | }
153 | .slider__txt {
154 | font-size: 2em;
155 | font-family: gramlight;
156 | line-height: 1.7;
157 | color: #1c1b19;
158 | margin-top: -20px;
159 | margin-bottom: 20px;
160 | max-width: 750px;
161 | }
162 | quote {
163 | font-size: 5em;
164 | font-family: gramlight;
165 | color: #1c1b19;
166 | margin-bottom: 0;
167 | }
168 |
169 | @-webkit-keyframes check {
170 | 50% {
171 | outline-color: #1c1b19;
172 | box-shadow: 0 0 0 12px #1c1b19, 0 0 0 36px rgba(51, 51, 51, 0.2);
173 | }
174 | 100% {
175 | outline-color: #1c1b19;
176 | box-shadow: 0 0 0 0 #1c1b19, 0 0 0 0 rgba(51, 51, 51, 0);
177 | }
178 | }
179 |
180 | @keyframes check {
181 | 50% {
182 | outline-color: #1c1b19;
183 | box-shadow: 0 0 0 12px #1c1b19, 0 0 0 36px rgba(51, 51, 51, 0.2);
184 | }
185 | 100% {
186 | outline-color: #1c1b19;
187 | box-shadow: 0 0 0 0 #1c1b19, 0 0 0 0 rgba(51, 51, 51, 0);
188 | }
189 | }
--------------------------------------------------------------------------------
/src/components/Fifth/Fifth.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./fifth.css";
3 | import bih from "../assets/avat6.jpeg";
4 | export const Fifth = () => {
5 | return (
6 |
7 | Like an artisan, I like to start form raw
8 | matter and give life to an iconic
9 | product that makes your brand stand
10 | out, starting from a Visual Strategy
11 | that guide that client's vision to reality.
12 |
13 |
All work
14 |
15 |
16 |
17 |
18 | );
19 | };
20 | export default Fifth;
21 |
--------------------------------------------------------------------------------
/src/components/Fifth/fifth.css:
--------------------------------------------------------------------------------
1 | .five{
2 | height: 100vh;
3 | }
4 | .down-text{
5 | position: absolute;
6 | font-size: 2em;
7 | color: #1c1b19;
8 | font-family: gramlight;
9 | margin-top: 19%;
10 | right: 2%;
11 | }
12 | .myButton {
13 | position: absolute;
14 | border-radius: 50%;
15 | border:1px solid #1c1b19;
16 | display:inline-block;
17 | cursor:pointer;
18 | color: #1c1b19;
19 | font-family: gramnarrow;
20 | font-size: 5em;
21 | padding: 40px 40px;
22 | text-decoration:none;
23 | text-transform: uppercase;
24 | letter-spacing: -3px;
25 | margin-top: 39%;
26 | right: 3%;
27 | }
28 | .myButton:hover {
29 | color: #bb6a4c;
30 | }
31 | a{
32 | position: absolute;
33 | }
34 | a:hover {
35 | color: #000;
36 | }
37 | a::before {
38 | content: "";
39 | position: relative;
40 | display: block;
41 | width: 100%;
42 | height: 2px;
43 | top: 80px;
44 | left: 0;
45 | background-color: #1c1b19;
46 | transform: scaleX(0);
47 | transition: transform 0.3s ease;
48 | }
49 | a:hover::before {
50 | transform: scaleX(1);
51 | }
52 | .big-block{
53 | position: absolute;
54 | height: 560px;
55 | width: 850px;
56 | left: 2%;
57 | margin-top: 10%;
58 | }
59 | .con-bi{
60 | position: absolute;
61 | height: 100%;
62 | width: 100%;
63 | object-fit: fill;
64 | }
--------------------------------------------------------------------------------
/src/components/Fourth/Fourth.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./fourth.css";
3 | import stamp from "../assets/stamp.png";
4 | import yellow from "../assets/vector2.jpeg";
5 | export const Fourth = () => {
6 | return (
7 |
8 |
webiste
9 |
10 |
11 |
Latest work!
12 |
13 | Fresh entry - A selected
14 | work from the latest
15 | digital releases.
16 |
17 |
tip!
18 |
Click the image to explore
19 |
20 |
21 |
22 |
23 |
thinkers
24 |
25 |
new
26 |
27 | Thinkers is an experimental e-learning platform that offers
28 | a wide variety of creative masterclass by award-winning
29 | digital thinkers on the Awwwwards community.
30 |
31 |
32 |
33 |
think, create
34 |
deliver
35 |
36 |
37 | strong project is created by
38 | deep collaboration. I design,
39 | develop and deliver webistes
40 |
41 |
42 | that drive results and win awards.
43 |
44 |
45 | );
46 | };
47 | export default Fourth;
--------------------------------------------------------------------------------
/src/components/Fourth/fourth.css:
--------------------------------------------------------------------------------
1 | .fourth{
2 | height: 100vh;
3 | }
4 | .four-bloc{
5 | position: absolute;
6 | background-color: #1c1b19;
7 | height: 320px;
8 | width: 960px;
9 | left: 2%;
10 | margin-top: 5%;
11 | }
12 | .web{
13 | position: absolute;
14 | color: #c5bdb4;
15 | text-transform: uppercase;
16 | font-family: scari;
17 | font-size: 16em;
18 | margin-top: 11%;
19 | left: 5%;
20 | font-stretch: extra-expanded;
21 | transform: scale(1, 1.5);
22 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
23 | -moz-transform: scale(1, 1.5); /* Firefox */
24 | -ms-transform: scale(1, 1.5); /* IE 9+ */
25 | -o-transform: scale(1, 1.5); /* Opera */
26 | }
27 | .stamp{
28 | height: auto;
29 | width: 280px;
30 | position: absolute;
31 | margin-top: 3.98%;
32 | right: 2%;
33 | }
34 | .four-line{
35 | margin-top: 40%;
36 | left:21%;
37 | width: 23%;
38 | height: 47px;
39 | border-bottom: 1px solid #1c1b19;
40 | position: absolute;
41 | transform: rotate(90deg);
42 | }
43 | .latest{
44 | position: absolute;
45 | font-size: 4.4em;
46 | font-family: scari;
47 | color: #1c1b19;
48 | margin-top: 30%;
49 | left: 2%;
50 | text-transform: uppercase;
51 | letter-spacing: -5px;
52 | }
53 | .des-lat{
54 | position: absolute;
55 | font-family: gramlight;
56 | font-size: 3em;
57 | color: #1c1b19;
58 | margin-top: 35%;
59 | left: 2%;
60 | }
61 | .tip{
62 | position: absolute;
63 | color: #1c1b19;
64 | letter-spacing: -2px;
65 | font-size: 2.5em;
66 | text-transform: uppercase;
67 | margin-top: 50%;
68 | font-family: scari;
69 | left: 2%;
70 | }
71 | .tp-des{
72 | position: absolute;
73 | font-family: gramlight;
74 | color: #1c1b19;
75 | font-size: 2em;
76 | margin-top: 50%;
77 | left: 6.5%;
78 | }
79 | .four-line-two{
80 | margin-top: 61%;
81 | left: 36%;
82 | width: 65%;
83 | height: 47px;
84 | border-bottom: 1px solid #1c1b19;
85 | position: absolute;
86 | transform: rotate(90deg);
87 | }
88 | .yell-blocl{
89 | position: absolute;
90 | height: 155px;
91 | width: 400px;
92 | margin-top:30%;
93 | left: 35%;
94 | }
95 | .yell-fill{
96 | position: absolute;
97 | object-fit: contain;
98 | height: 100%;
99 | width: 100%;
100 | }
101 | .think{
102 | position: absolute;
103 | color: #1c1b19;
104 | font-size: 3em;
105 | margin-top: 43%;
106 | left: 35%;
107 | text-transform: uppercase;
108 | font-family: scari;
109 | letter-spacing: -3px;
110 | }
111 | .new-org{
112 | position: absolute;
113 | height: 38px;
114 | width: 60px;
115 | background-color: #df7853;
116 | margin-top: 43%;
117 | left: 47%;
118 | border-radius: 10px;
119 | }
120 | .new{
121 | position: absolute;
122 | color: #c5bdb4;
123 | font-size: 2em;
124 | text-transform: uppercase;
125 | font-family: scari;
126 | letter-spacing: -3px;
127 | margin-top: 43.5%;
128 | left: 47.6%;
129 | }
130 | .new-des-think{
131 | position: absolute;
132 | font-size: 1.3em;
133 | color: #1c1b19;
134 | font-family: gramlight;
135 | margin-top: 46.3%;
136 | left: 35.5%;
137 | }
138 | .four-lin{
139 | margin-top: 34%;
140 | right: 2%;
141 | width: 28%;
142 | height: 47px;
143 | border-bottom: 1px solid #1c1b19;
144 | position: absolute;
145 | }
146 | .text-head-one{
147 | position: absolute;
148 | color: #1c1b19;
149 | letter-spacing: -5px;
150 | font-family: scari;
151 | font-size: 5.3em;
152 | margin-top: 34%;
153 | right: 2%;
154 | text-transform: uppercase;
155 | }
156 | .four-lin-del{
157 | margin-top: 46%;
158 | right: 2%;
159 | width: 28%;
160 | height: 47px;
161 | border-bottom: 1px solid #1c1b19;
162 | position: absolute;
163 | }
164 | .delivery{
165 | color: #1c1b19;
166 | position: absolute;
167 | font-family: scari;
168 | font-size: 8.5em;
169 | margin-top: 42%;
170 | right: 1%;
171 | text-transform: uppercase;
172 | transform: scale(1, 1.5);
173 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
174 | -moz-transform: scale(1, 1.5); /* Firefox */
175 | -ms-transform: scale(1, 1.5); /* IE 9+ */
176 | -o-transform: scale(1, 1.5); /* Opera */
177 | }
178 | .block-a-four{
179 | position: absolute;
180 | height: 98px;
181 | width: 62px;
182 | background-color: #1c1b19;
183 | right: 26%;
184 | margin-top: 53%;
185 | }
186 | .block-a-let-four{
187 | position: relative;
188 | text-transform: uppercase;
189 | color: #c5bdb4;
190 | font-size: 6em;
191 | font-family: albaz;
192 | margin-top: 1%;
193 | left: 5%;
194 | }
195 | .go-des{
196 | position: absolute;
197 | font-size: 2em;
198 | color: #1c1b19;
199 | font-family: gramlight;
200 | margin-top: 52.5%;
201 | right: 4%;
202 | }
203 | .go-des-two{
204 | position: absolute;
205 | font-size: 2em;
206 | color: #1c1b19;
207 | font-family: gramlight;
208 | margin-top: 60.5%;
209 | right: 5.5%;
210 | }
--------------------------------------------------------------------------------
/src/components/Home/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import logo from "../assets/logoheader.png";
3 | import vector2 from "../assets/vector1.jpeg";
4 | import vector1 from "../assets/vector6.jpeg";
5 | import vector3 from "../assets/vector3.jpeg";
6 | import "./home.css";
7 | const Home = () => {
8 | return (
9 |
10 |
11 |
12 |
16 |
Sri - Lanka, Maharagama
17 |
18 |
19 |
20 |
21 |
sal parasuco
22 |
23 | Sal Parasuco is a digital eCommerce experience providing
24 | luxury outwear garments for the modern entitiy.
25 |
26 |
27 |
28 |
29 |
books of eye
30 |
31 | Sal Parasuco is a digital eCommerce experience providing
32 | luxury outwear garments for the modern entitiy.
33 |
34 |
35 |
36 |
37 |
omswami
38 |
39 | Sal Parasuco is a digital eCommerce experience providing
40 | luxury outwear garments for the modern entitiy.
41 |
42 |
43 |
miranda
44 |
45 | );
46 | };
47 |
48 | export default Home;
49 |
--------------------------------------------------------------------------------
/src/components/Home/home.css:
--------------------------------------------------------------------------------
1 | .home{
2 | height: 100vh;
3 | }
4 | .logo{
5 | position: absolute;
6 | height: auto;
7 | width: 200px;
8 | top: 5%;
9 | left: 50%;
10 | transform: translate(-50%, -50%);
11 | }
12 | .hamburger {
13 | display: flex;
14 | align-self: center;
15 | flex-direction: column;
16 | justify-content: space-between;
17 | width: 50px;
18 | height: 10px;
19 | cursor: pointer;
20 | right: 1%;
21 | top: 5%;
22 | transform: translate(-50%, -50%);
23 | position: absolute;
24 | z-index: 2;
25 | }
26 | .hamburger div {
27 | align-self: flex-end;
28 | height: 3px;
29 | width: 100%;
30 | background: #1c1b19;
31 | }
32 | .hamburger .meat {
33 | width: 100%;
34 | transition: all 200ms ease-in-out;
35 | }
36 | .hamburger:hover div {
37 | width: 100%;
38 | }
39 | .hamburger:hover .top-bun {
40 | animation: burger-hover 1s infinite ease-in-out alternate;
41 | }
42 | .hamburger:hover .meat {
43 | animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
44 | }
45 | @keyframes burger-hover {
46 | 0% { width: 100%; }
47 | 50% { width: 50%; }
48 | 100% { width: 100%; }
49 | }
50 | .location{
51 | position: absolute;
52 | font-size: 1.5em;
53 | font-family: gramlight;
54 | color: #1c1b19;
55 | left: 9%;
56 | top: 5%;
57 | transform: translate(-50%, -50%);
58 | }
59 | .line{
60 | top: 2%;
61 | width: 100%;
62 | height: 47px;
63 | border-bottom: 1px solid #1c1b19;
64 | position: absolute;
65 | }
66 | .pic-block{
67 | position: absolute;
68 | top: 11%;
69 | left: 1.5%;
70 | height: 150px;
71 | width: 400px;
72 | }
73 | .pic-block-two{
74 | position: absolute;
75 | top: 11%;
76 | left: 35%;
77 | height: 150px;
78 | width: 400px;
79 | }
80 | .pic-block-three{
81 | position: absolute;
82 | top: 11%;
83 | right: 1.5%;
84 | height: 150px;
85 | width: 400px;
86 | }
87 | .image-og{
88 | object-fit: cover;
89 | height: 100%;
90 | width: 100%;
91 | }
92 | .tagger-one{
93 | position: absolute;
94 | font-size: 2em;
95 | text-transform: uppercase;
96 | font-weight: 600;
97 | color: #1c1b19;
98 | font-family: gramnarrow;
99 | top: 31%;
100 | left: 1.5%;
101 | }
102 | .tagger-des{
103 | position: absolute;
104 | color: #1c1b19;
105 | font-family: gramlight;
106 | top: 40%;
107 | left: 1.5%;
108 | font-size: 1.3em;
109 | }
110 | .tagger-two{
111 | position: absolute;
112 | font-size: 2em;
113 | text-transform: uppercase;
114 | font-weight: 600;
115 | color: #1c1b19;
116 | font-family: gramnarrow;
117 | top: 31%;
118 | left: 35%;
119 | }
120 | .tagger-des-two{
121 | position: absolute;
122 | color: #1c1b19;
123 | font-family: gramlight;
124 | top: 40%;
125 | left: 35%;
126 | font-size: 1.3em;
127 | }
128 | .tagger-three{
129 | position: absolute;
130 | font-size: 2em;
131 | text-transform: uppercase;
132 | font-weight: 600;
133 | color: #1c1b19;
134 | font-family: gramnarrow;
135 | top: 31%;
136 | left: 69.3%;
137 | }
138 | .tagger-des-three{
139 | position: absolute;
140 | color: #1c1b19;
141 | font-family: gramlight;
142 | top: 40%;
143 | left: 69.3%;
144 | font-size: 1.3em;
145 | }
146 | .name{
147 | position: absolute;
148 | color: #c5bdb4;
149 | font-family: scari;
150 | font-size: 25em;
151 | text-align: center;
152 | text-transform: uppercase;
153 | top: 95%;
154 | left: 50%;
155 | transform: translate(-50%, -50%);
156 | }
157 | .name-block{
158 | background-color: #1c1b19;
159 | position: absolute;
160 | height: 400px;
161 | top: 86%;
162 | left: 50%;
163 | transform: translate(-50%, -50%);
164 | width: 97%;
165 | }
--------------------------------------------------------------------------------
/src/components/Last/Last.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./last.css";
3 | import lega from "../assets/stamp.png";
4 | export const Last = () => {
5 | return (
6 |
7 |
8 |
9 |
Let's
10 |
create
11 |
something
12 |
togehter
13 |
16 |
17 |
18 |
19 |
©chaniru.lk
20 |
21 |
Legal
22 |
Instagram
23 |
Twitter
24 |
Behance
25 |
26 | );
27 | };
28 | export default Last;
--------------------------------------------------------------------------------
/src/components/Last/last.css:
--------------------------------------------------------------------------------
1 | .last{
2 | height: 45vh;
3 | }
4 | .last-line{
5 | margin-top: 1%;
6 | width: 100%;
7 | height: 47px;
8 | border-bottom: 1px solid #1c1b19;
9 | position: absolute;
10 | }
11 | .last-line-two{
12 | margin-top: 13%;
13 | width: 100%;
14 | height: 47px;
15 | border-bottom: 1px solid #1c1b19;
16 | position: absolute;
17 | }
18 | .chaniru{
19 | position: absolute;
20 | margin-top: 5%;
21 | padding: 3px;
22 | width: 100%;
23 | overflow: hidden;
24 | }
25 | .marquee{
26 | display:block;
27 | position:relative;
28 | width: 100%;
29 | height: 160px;
30 | animation:scroll 10s linear infinite;
31 | padding:3px;
32 | }
33 | .img1 {
34 | font-size: 7em;
35 | font-family: scari;
36 | color: #1c1b19;
37 | margin: 5px;
38 | float:left;
39 | }
40 | .last-blk{
41 | position: absolute;
42 | height: 120px;
43 | width: 555px;
44 | background-color: #1c1b19;
45 | text-transform: uppercase;
46 | color: #c5bdb4;
47 | }
48 | .names{
49 | position: absolute;
50 | color: #1c1b19;
51 | font-size: 2em;
52 | margin-top: 17.5%;
53 | left: 2%;
54 | font-family: scari;
55 | }
56 | .legal{
57 | position: absolute;
58 | height: 50px;
59 | width: auto;
60 | margin-top: 17%;
61 | left: 14%;
62 | }
63 | .legal-text{
64 | position: absolute;
65 | margin-top: 17.5%;
66 | left: 17%;
67 | color: #1c1b19;
68 | font-family: gramlight;
69 | font-size: 2em;
70 | }
71 | .last-link-one{
72 | position: absolute;
73 | color: #1c1b19;
74 | font-size: 2em;
75 | font-family: gramlight;
76 | margin-top: 17.5%;
77 | right: 20%;
78 | text-decoration: none;
79 | }
80 | .last-link-two{
81 | position: absolute;
82 | color: #1c1b19;
83 | font-size: 2em;
84 | font-family: gramlight;
85 | margin-top: 17.5%;
86 | right: 12%;
87 | text-decoration: none;
88 | }
89 | .last-link-three{
90 | position: absolute;
91 | color: #1c1b19;
92 | font-size: 2em;
93 | font-family: gramlight;
94 | margin-top: 17.5%;
95 | right: 3%;
96 | text-decoration: none;
97 | }
98 | .last-link-one::before {
99 | content: "";
100 | position: relative;
101 | display: block;
102 | width: 100%;
103 | height: 2px;
104 | top: 40px;
105 | left: 0;
106 | background-color: #1c1b19;
107 | transform: scaleX(1);
108 | transition: transform 0.3s ease;
109 | }
110 | .last-link-one:hover::before {
111 | transform: scaleX(0);
112 | }
113 | .last-link-two::before {
114 | content: "";
115 | position: relative;
116 | display: block;
117 | width: 100%;
118 | height: 2px;
119 | top: 40px;
120 | left: 0;
121 | background-color: #1c1b19;
122 | transform: scaleX(1);
123 | transition: transform 0.3s ease;
124 | }
125 | .last-link-two:hover::before {
126 | transform: scaleX(0);
127 | }
128 | .last-link-three::before {
129 | content: "";
130 | position: relative;
131 | display: block;
132 | width: 100%;
133 | height: 2px;
134 | top: 40px;
135 | left: 0;
136 | background-color: #1c1b19;
137 | transform: scaleX(1);
138 | transition: transform 0.3s ease;
139 | }
140 | .last-link-three:hover::before {
141 | transform: scaleX(0);
142 | }
143 | @keyframes scroll{
144 | 0% {left:800px;}
145 | 100% {left:-800px;}
146 | }
--------------------------------------------------------------------------------
/src/components/Nine/Nine.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./nine.css";
3 | import fill1 from "../assets/vector6.jpeg";
4 | import fill2 from "../assets/vector5.jpeg";
5 | export const Nine = () => {
6 | return (
7 |
8 |
9 |
10 |
11 |
12 |
13 |
sal parasuco
14 |
15 |
16 |
17 |
sal parasuco
18 |
19 |
new
20 |
21 | Thinkers is an experimental e-learning platform that offers
22 | a wide variety of creative masterclass by award-winning
23 | digital thinkers on the Awwwwards community.
24 |
25 |
26 |
new
27 |
28 | Thinkers is an experimental e-learning platform that offers
29 | a wide variety of creative masterclass by award-winning
30 | digital thinkers on the Awwwwards community.
31 |
32 |
all work!
33 |
34 | Follow me Instagram
35 | @chaniru.lk
36 |
37 |
Click Here
38 |
39 | );
40 | };
41 | export default Nine;
--------------------------------------------------------------------------------
/src/components/Nine/nine.css:
--------------------------------------------------------------------------------
1 | .nine{
2 | height: 100vh;
3 | }
4 | .nine-line{
5 | margin-top: 20%;
6 | width: 100%;
7 | height: 47px;
8 | border-bottom: 1px solid #1c1b19;
9 | position: absolute;
10 | }
11 | .nine-line-two{
12 | margin-top: 35%;
13 | left: 25%;
14 | width: 20%;
15 | height: 47px;
16 | border-bottom: 1px solid #1c1b19;
17 | position: absolute;
18 | transform: rotate(90deg);
19 | }
20 | .nine-line-three{
21 | margin-top: 35%;
22 | right: 25%;
23 | width: 20%;
24 | height: 47px;
25 | border-bottom: 1px solid #1c1b19;
26 | position: absolute;
27 | transform: rotate(90deg);
28 | }
29 | .nine-block{
30 | position: absolute;
31 | height: 150px;
32 | width: 400px;
33 | left: 2%;
34 | margin-top: 25%;
35 | }
36 | .nine-block-two{
37 | position: absolute;
38 | height: 150px;
39 | width: 400px;
40 | right: 3%;
41 | margin-top: 25%;
42 | }
43 | .nine-fill{
44 | height: 100%;
45 | width: 100%;
46 | object-fit: contain;
47 | }
48 | .tagr-one{
49 | position: absolute;
50 | font-size: 2em;
51 | text-transform: uppercase;
52 | font-weight: 600;
53 | color: #1c1b19;
54 | font-family: gramnarrow;
55 | left: 2.5%;
56 | margin-top: 36%;
57 | }
58 | .tagr-two{
59 | position: absolute;
60 | font-size: 2em;
61 | text-transform: uppercase;
62 | font-weight: 600;
63 | color: #1c1b19;
64 | font-family: gramnarrow;
65 | right: 19%;
66 | margin-top: 36%;
67 | }
68 | .new-org-nine{
69 | position: absolute;
70 | height: 30px;
71 | width: 55px;
72 | background-color: #df7853;
73 | left: 15.5%;
74 | border-radius: 10px;
75 | margin-top: 36.2%;
76 | }
77 | .new-org-nine-two{
78 | position: absolute;
79 | height: 30px;
80 | width: 55px;
81 | background-color: #df7853;
82 | right: 14.9%;
83 | border-radius: 10px;
84 | margin-top: 36.2%;
85 | }
86 | .new-nine{
87 | position: absolute;
88 | color: #c5bdb4;
89 | font-size: 1.8em;
90 | text-transform: uppercase;
91 | font-family: scari;
92 | letter-spacing: -3px;
93 | margin-top: 36.55%;
94 | left: 15.95%;
95 | }
96 | .new-nine-two{
97 | position: absolute;
98 | color: #c5bdb4;
99 | font-size: 1.8em;
100 | text-transform: uppercase;
101 | font-family: scari;
102 | letter-spacing: -3px;
103 | margin-top: 36.55%;
104 | right: 15.6%;
105 | }
106 | .nine-des-think{
107 | position: absolute;
108 | font-size: 1.3em;
109 | color: #1c1b19;
110 | font-family: gramlight;
111 | margin-top: 39%;
112 | left: 2.5%;
113 | }
114 | .nine-des-think-two{
115 | position: absolute;
116 | font-size: 1.3em;
117 | color: #1c1b19;
118 | font-family: gramlight;
119 | margin-top: 39%;
120 | right: 3.5%;
121 | }
122 | .cap-work{
123 | position: absolute;
124 | font-family: scari;
125 | text-transform: uppercase;
126 | color: #1c1b19;
127 | font-size: 5em;
128 | margin-top: 26%;
129 | left: 37%;
130 | }
131 | .credit{
132 | position: absolute;
133 | color: #1c1b19;
134 | font-size: 3em;
135 | text-align: center;
136 | margin-top: 33%;
137 | left: 37%;
138 | font-family: gramlight;
139 | }
140 | .here{
141 | position: absolute;
142 | color: #1c1b19;
143 | font-size: 3em;
144 | text-align: center;
145 | margin-top: 43%;
146 | left: 44%;
147 | font-family: gramlight;
148 | text-decoration: none;
149 | }
150 | .here::before {
151 | content: "";
152 | position: relative;
153 | display: block;
154 | width: 100%;
155 | height: 2px;
156 | top: 60px;
157 | left: 0;
158 | background-color: #1c1b19;
159 | transform: scaleX(1);
160 | transition: transform 0.3s ease;
161 | }
162 | .here:hover::before {
163 | transform: scaleX(0);
164 | }
--------------------------------------------------------------------------------
/src/components/Second/Second.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./second.css";
3 | import face from "../assets/avat4.jpeg";
4 | export const Second = () => {
5 | return (
6 |
7 |
8 |
interactive
9 |
artist!
10 |
11 |
12 |
13 |
14 |
15 |
16 | );
17 | };
18 |
19 |
20 | export default Second;
21 |
--------------------------------------------------------------------------------
/src/components/Second/second.css:
--------------------------------------------------------------------------------
1 | .second{
2 | height: 100vh;
3 | }
4 | .sec-line{
5 | margin-top: 16%;
6 | left: 3%;
7 | width: 33%;
8 | height: 47px;
9 | border-bottom: 1px solid #1c1b19;
10 | position: absolute;
11 | }
12 | .sec-line-two{
13 | margin-top: 30%;
14 | left: 3%;
15 | width: 30%;
16 | height: 47px;
17 | border-bottom: 1px solid #1c1b19;
18 | position: absolute;
19 | }
20 | .sec-line-three{
21 | margin-top: 53%;
22 | left: 2%;
23 | width: 80%;
24 | height: 47px;
25 | border-bottom: 1px solid #1c1b19;
26 | position: absolute;
27 | transform: rotate(90deg);
28 | }
29 | .inter{
30 | margin-top: 15%;
31 | left: 2.3%;
32 | font-family: scari;
33 | font-size: 6.9em;
34 | text-transform: uppercase;
35 | position: absolute;
36 | color: #1c1b19;
37 | letter-spacing: -5px;
38 | }
39 | .artist{
40 | position: absolute;
41 | margin-top: 25%;
42 | left: 2%;
43 | font-size: 10em;
44 | color: #1c1b19;
45 | text-transform: uppercase;
46 | font-family: scari;
47 | transform: scale(1, 1.5);
48 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
49 | -moz-transform: scale(1, 1.5); /* Firefox */
50 | -ms-transform: scale(1, 1.5); /* IE 9+ */
51 | -o-transform: scale(1, 1.5); /* Opera */
52 | }
53 | .pic-bay{
54 | position: absolute;
55 | margin-top: 15%;
56 | right: 2%;
57 | height: 510px;
58 | width: 750px;
59 | }
60 | .face{
61 | position: absolute;
62 | height: 100%;
63 | width: 100%;
64 | object-fit: contain;
65 | }
--------------------------------------------------------------------------------
/src/components/Seven/Seven.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./seven.css";
3 | import sev from "../assets/avat5.jpeg";
4 | import fillblk from "../assets/avat2.jpeg";
5 | import thr from "../assets/avat3.jpeg";
6 | export const Seven = () => {
7 | return (
8 |
9 |
10 |
11 |
the
12 |
pixel
13 |
14 |
15 |
16 |
17 |
18 |
19 |
perfect
20 |
21 | );
22 | };
23 | export default Seven;
--------------------------------------------------------------------------------
/src/components/Seven/seven.css:
--------------------------------------------------------------------------------
1 | .seven{
2 | height: 100vh;
3 | }
4 | .sev-lov{
5 | position: absolute;
6 | height: 300px;
7 | width: 170px;
8 | left: 2%;
9 | margin-top: -20%;
10 | }
11 | .sev-pic{
12 | height: 100%;
13 | width: 100%;
14 | object-fit: contain;
15 | }
16 | .the{
17 | position: absolute;
18 | font-size: 25em;
19 | text-transform: uppercase;
20 | font-family: scari;
21 | letter-spacing: -21px;
22 | left: 15%;
23 | margin-top: -20%;
24 | color: #1c1b19;
25 | }
26 | .pixel{
27 | position: absolute;
28 | font-family: scari;
29 | font-size: 25em;
30 | margin-top: 5%;
31 | left: 2%;
32 | text-transform: uppercase;
33 | letter-spacing: -18px;
34 | color: #1c1b19;
35 | }
36 | .blocker{
37 | position: absolute;
38 | height: 640px;
39 | width: 580px;
40 | margin-top: -20%;
41 | right: 1%;
42 | }
43 | .blocker-fill{
44 | height: 100%;
45 | width: 100%;
46 | object-fit: fill;
47 | }
48 | .throp{
49 | position: absolute;
50 | height: 280px;
51 | width: 300px;
52 | left: 2%;
53 | margin-top: 30%;
54 | }
55 | .thr{
56 | height: 100%;
57 | width: 100%;
58 | object-fit: contain;
59 | }
60 | .perfect{
61 | position: absolute;
62 | color: #1c1b19;
63 | font-size: 22em;
64 | font-family: scari;
65 | text-transform: uppercase;
66 | letter-spacing: -15px;
67 | margin-top: 30.5%;
68 | left: 24%;
69 | }
--------------------------------------------------------------------------------
/src/components/Six/Six.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./six.css";
3 | export const Six = () => {
4 | return (
5 |
6 |
7 |
8 |
site of the day
9 |
Awards
10 |
9
11 |
12 |
13 |
site of the month
14 |
winners
15 |
1
16 |
17 |
18 |
fwa of the day
19 |
Awards
20 |
6
21 |
22 |
23 |
acclaimed
24 |
mentions
25 |
8
26 |
27 |
28 |
29 |
30 | );
31 | };
32 | export default Six;
33 |
--------------------------------------------------------------------------------
/src/components/Six/six.css:
--------------------------------------------------------------------------------
1 | .six{
2 | height: 100vh;
3 | }
4 | .six-line{
5 | margin-top: 6%;
6 | width: 100%;
7 | height: 47px;
8 | border-bottom: 1px solid #1c1b19;
9 | position: absolute;
10 | }
11 | .column {
12 | position: relative;
13 | left: 10px;
14 | top: 150px;
15 | float: left;
16 | width: 23%;
17 | padding: 10px;
18 | height: 130px;
19 | }
20 | .row:after {
21 | content: "";
22 | display: table;
23 | clear: both;
24 | }
25 | .sotd{
26 | position: absolute;
27 | color: #1c1b19;
28 | font-size: 2em;
29 | font-family: gramlight;
30 | text-transform: uppercase;
31 | }
32 | .st-head{
33 | position: absolute;
34 | font-size: 4em;
35 | color: #1c1b19;
36 | font-family: scari;
37 | letter-spacing: -3px;
38 | text-transform: uppercase;
39 | top: 50px;
40 | left: 10px;
41 | }
42 | .num{
43 | position: absolute;
44 | color: #1c1b19;
45 | font-size: 10em;
46 | font-family: scari;
47 | right: 50px;
48 | }
49 | .sotd-two{
50 | position: absolute;
51 | color: #1c1b19;
52 | font-size: 2em;
53 | font-family: gramlight;
54 | text-transform: uppercase;
55 | left: 20px;
56 | }
57 | .st-head-two{
58 | position: absolute;
59 | font-size: 4.6em;
60 | color: #1c1b19;
61 | font-family: scari;
62 | letter-spacing: -3px;
63 | text-transform: uppercase;
64 | top: 50px;
65 | left: 20px;
66 | }
67 | .num-two{
68 | position: absolute;
69 | color: #1c1b19;
70 | font-size: 10em;
71 | font-family: scari;
72 | right: 30px;
73 |
74 | }
75 | .num-four{
76 | position: absolute;
77 | color: #1c1b19;
78 | font-size: 10em;
79 | font-family: scari;
80 | right: 20px;
81 |
82 | }
83 | .sotd-three{
84 | position: absolute;
85 | color: #1c1b19;
86 | font-size: 2em;
87 | font-family: gramlight;
88 | text-transform: uppercase;
89 | left: 20px;
90 | }
91 | .six-line-two{
92 | margin-top: 8%;
93 | width: 100%;
94 | height: 47px;
95 | border-bottom: 1px solid #1c1b19;
96 | position: absolute;
97 | }
--------------------------------------------------------------------------------
/src/components/Third/Third.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./third.css";
3 | import side from "../assets/avat1.jpeg";
4 | export const Third = () => {
5 | return (
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
digital art director
14 |
interactive designer
15 |
creative developer
16 |
based in Sri - Lanka
17 |
18 |
19 | s a multidisciplinary freelance,
20 | I'm passionate about creating
21 | iconic digital experiences
22 |
23 |
through motion, typography and
24 | creative coding for companies and
25 | agencies around the world.
26 |
27 | );
28 | };
29 | export default Third;
30 |
--------------------------------------------------------------------------------
/src/components/Third/third.css:
--------------------------------------------------------------------------------
1 | .third{
2 | height: 100vh;
3 | }
4 | .pic-side-boc{
5 | position: absolute;
6 | height: 470px;
7 | width: 460px;
8 | left: 2%;
9 | margin-top: -8%;
10 | }
11 | .boc-fill{
12 | position: absolute;
13 | object-fit: cover;
14 | height: 100%;
15 | width: 100%;
16 | }
17 | .third-line{
18 | margin-top: 10%;
19 | right: 3%;
20 | width: 53%;
21 | height: 47px;
22 | border-bottom: 1px solid #1c1b19;
23 | position: absolute;
24 | }
25 | .third-line-two{
26 | margin-top: 19%;
27 | right: 3%;
28 | width: 53%;
29 | height: 47px;
30 | border-bottom: 1px solid #1c1b19;
31 | position: absolute;
32 | }
33 | .third-line-three{
34 | margin-top: 28%;
35 | right: 3%;
36 | width: 53%;
37 | height: 47px;
38 | border-bottom: 1px solid #1c1b19;
39 | position: absolute;
40 | }
41 | .third-line-four{
42 | margin-top: 38%;
43 | right: 3%;
44 | width: 53%;
45 | height: 47px;
46 | border-bottom: 1px solid #1c1b19;
47 | position: absolute;
48 | }
49 | .text-one{
50 | position: absolute;
51 | font-size: 5.5em;
52 | color: #1c1b19;
53 | text-transform: uppercase;
54 | font-family: scari;
55 | margin-top: 12%;
56 | left: 43%;
57 | transform: scale(1, 1.5);
58 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
59 | -moz-transform: scale(1, 1.5); /* Firefox */
60 | -ms-transform: scale(1, 1.5); /* IE 9+ */
61 | -o-transform: scale(1, 1.5); /* Opera */
62 | }
63 | .text-two{
64 | position: absolute;
65 | font-size: 5.5em;
66 | color: #1c1b19;
67 | text-transform: uppercase;
68 | font-family: scari;
69 | margin-top: 21%;
70 | left: 43%;
71 | transform: scale(1, 1.5);
72 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
73 | -moz-transform: scale(1, 1.5); /* Firefox */
74 | -ms-transform: scale(1, 1.5); /* IE 9+ */
75 | -o-transform: scale(1, 1.5); /* Opera */
76 | }
77 | .text-three{
78 | position: absolute;
79 | font-size: 5.5em;
80 | color: #1c1b19;
81 | text-transform: uppercase;
82 | font-family: scari;
83 | margin-top: 30%;
84 | left: 43%;
85 | transform: scale(1, 1.5);
86 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
87 | -moz-transform: scale(1, 1.5); /* Firefox */
88 | -ms-transform: scale(1, 1.5); /* IE 9+ */
89 | -o-transform: scale(1, 1.5); /* Opera */
90 | }
91 | .text-four{
92 | position: absolute;
93 | font-size: 5.5em;
94 | color: #1c1b19;
95 | text-transform: uppercase;
96 | font-family: scari;
97 | margin-top: 38%;
98 | left: 43%;
99 | transform: scale(1, 1.5);
100 | -webkit-transform: scale(1, 1.5); /* Safari and Chrome */
101 | -moz-transform: scale(1, 1.5); /* Firefox */
102 | -ms-transform: scale(1, 1.5); /* IE 9+ */
103 | -o-transform: scale(1, 1.5); /* Opera */
104 | }
105 | .block-a{
106 | position: absolute;
107 | height: 98px;
108 | width: 62px;
109 | background-color: #1c1b19;
110 | left: 2%;
111 | margin-top: 30%;
112 | }
113 | .block-a-let{
114 | position: relative;
115 | text-transform: uppercase;
116 | color: #c5bdb4;
117 | font-size: 6em;
118 | font-family: albaz;
119 | margin-top: 1%;
120 | left: 5%;
121 | }
122 | .text-ablaz{
123 | position: absolute;
124 | font-size: 2.5em;
125 | font-family: gramlight;
126 | margin-top: 29%;
127 | left: 7%;
128 | text-align: justify;
129 | color: #1c1b19;
130 | }
131 | .ablaz-two{
132 | position: absolute;
133 | font-size: 2.5em;
134 | font-family: gramlight;
135 | margin-top: 39%;
136 | left: 2%;
137 | text-align: justify;
138 | color: #1c1b19;
139 | }
--------------------------------------------------------------------------------
/src/components/assets/Chaniru.lk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/Chaniru.lk.png
--------------------------------------------------------------------------------
/src/components/assets/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/Thumbs.db
--------------------------------------------------------------------------------
/src/components/assets/avat1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat1.jpeg
--------------------------------------------------------------------------------
/src/components/assets/avat2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat2.jpeg
--------------------------------------------------------------------------------
/src/components/assets/avat3.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat3.jpeg
--------------------------------------------------------------------------------
/src/components/assets/avat4.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat4.jpeg
--------------------------------------------------------------------------------
/src/components/assets/avat5.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat5.jpeg
--------------------------------------------------------------------------------
/src/components/assets/avat6.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/avat6.jpeg
--------------------------------------------------------------------------------
/src/components/assets/back.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/back.jpg
--------------------------------------------------------------------------------
/src/components/assets/img-noise-361x370.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/img-noise-361x370.png
--------------------------------------------------------------------------------
/src/components/assets/logoheader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/logoheader.png
--------------------------------------------------------------------------------
/src/components/assets/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/screenshot.png
--------------------------------------------------------------------------------
/src/components/assets/stamp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/stamp.png
--------------------------------------------------------------------------------
/src/components/assets/vector1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector1.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector2.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector3.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector3.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector4.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector4.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector5.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector5.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector6.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector6.jpeg
--------------------------------------------------------------------------------
/src/components/assets/vector7.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/assets/vector7.jpeg
--------------------------------------------------------------------------------
/src/components/fonts/Abaddon.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/fonts/Abaddon.woff2
--------------------------------------------------------------------------------
/src/components/fonts/ITC Garamond Book Narrow.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/fonts/ITC Garamond Book Narrow.woff2
--------------------------------------------------------------------------------
/src/components/fonts/ITC Garamond Light Condensed.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/fonts/ITC Garamond Light Condensed.woff2
--------------------------------------------------------------------------------
/src/components/fonts/SatisficeDemo-w1EGw.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-MIRANDA-PAPER-PORTFOLIO/0b6c99bf2ad126ca41e03a9aa99ecc2d5dc3ae16/src/components/fonts/SatisficeDemo-w1EGw.woff2
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | background:#c7bfb6 url(data:image/png;base64,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);
9 | overflow-x: hidden;
10 | }
11 |
12 | code {
13 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
14 | monospace;
15 | }
16 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom/client';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 |
7 | const root = ReactDOM.createRoot(document.getElementById('root'));
8 | root.render(
9 |
10 |
11 |
12 | );
13 |
14 | // If you want to start measuring performance in your app, pass a function
15 | // to log results (for example: reportWebVitals(console.log))
16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17 | reportWebVitals();
18 |
--------------------------------------------------------------------------------
/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------