Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
4803913
started using tailwind
ramjayakumar21 Jun 14, 2023
0d2c568
in progress changes for final version
ramjayakumar21 Jun 23, 2023
072c149
commit
ramjayakumar21 Jun 28, 2023
3039320
implement react router
ramjayakumar21 Jun 28, 2023
a8e7736
add ui changes
ramjayakumar21 Jul 2, 2023
30eaa00
add small ui changes and projects page
ramjayakumar21 Jul 3, 2023
650df51
push new article jsx file
ramjayakumar21 Jul 3, 2023
e0e6537
Small ui fixes and Experience tab added
ramjayakumar21 Jul 5, 2023
0f9a9b1
update experience page
ramjayakumar21 Aug 16, 2023
6f5d04c
update experiences page
ramjayakumar21 Aug 16, 2023
479f8a3
small fixes
ramjayakumar21 Aug 17, 2023
c7f1cce
semi-fix for ios lag
ramjayakumar21 Aug 17, 2023
1d52be7
fix for vite 404 error
ramjayakumar21 Aug 17, 2023
7820903
added netlify toml
ramjayakumar21 Aug 17, 2023
0ae642f
add tag for google search console
ramjayakumar21 Aug 18, 2023
c27260c
merge toml change
ramjayakumar21 Aug 18, 2023
3102bed
fix dev security issues
ramjayakumar21 Aug 18, 2023
b43cbcd
fix xml error
ramjayakumar21 Aug 18, 2023
b8b776b
added styles to light mode
ramjayakumar21 Sep 25, 2023
7887115
improved mobile styling
ramjayakumar21 Sep 26, 2023
f6e52ee
added main jsx
ramjayakumar21 Sep 26, 2023
a84ed04
Update App.jsx
ramjayakumar21 Sep 26, 2023
13aab46
fixed error with useEffect
ramjayakumar21 Sep 26, 2023
a0ec853
added site analytics
ramjayakumar21 Nov 12, 2023
856c64d
Merge branch 'site_v2' of https://github.com/ramjayakumar21/personals…
ramjayakumar21 Nov 12, 2023
0cd6176
updated npm dependencies
ramjayakumar21 Nov 12, 2023
f0a8ac2
add new project
ramjayakumar21 Jan 24, 2024
3d3694a
Merge branch 'site_v2' of https://github.com/ramjayakumar21/personals…
ramjayakumar21 Jan 24, 2024
dc59a43
change face
ramjayakumar21 Jan 31, 2024
afd0147
new version
Sep 25, 2024
d3b2393
more changes
Sep 25, 2024
6c81658
fix typos
Sep 25, 2024
3e05279
fix favicon
Sep 25, 2024
9bbe6b4
fix text
Sep 25, 2024
4a928e0
make text fit
Sep 25, 2024
68cc3cc
update exp
ramjayakumar21 Nov 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.next*

node_modules
dist
Expand Down
30 changes: 30 additions & 0 deletions .next/build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [
"static/chunks/react-refresh.js"
],
"ampDevFiles": [
"static/chunks/webpack.js",
"static/chunks/amp.js"
],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [],
"pages": {
"/_app": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_app.js"
],
"/_error": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_error.js"
]
},
"ampFirstPages": []
}
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/0.pack
Binary file not shown.
Binary file added .next/cache/webpack/client-development/1.pack
Binary file not shown.
Binary file added .next/cache/webpack/client-development/2.pack
Binary file not shown.
Binary file added .next/cache/webpack/client-development/3.pack
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/server-development/0.pack
Binary file not shown.
Binary file added .next/cache/webpack/server-development/1.pack
Binary file not shown.
Binary file added .next/cache/webpack/server-development/2.pack
Binary file not shown.
Binary file added .next/cache/webpack/server-development/3.pack
Binary file not shown.
Binary file added .next/cache/webpack/server-development/index.pack
Binary file not shown.
Binary file not shown.
27 changes: 27 additions & 0 deletions .next/fallback-build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [
"static/chunks/fallback/react-refresh.js"
],
"ampDevFiles": [
"static/chunks/fallback/webpack.js",
"static/chunks/fallback/amp.js"
],
"lowPriorityFiles": [],
"rootMainFiles": [],
"pages": {
"/_app": [
"static/chunks/fallback/webpack.js",
"static/chunks/fallback/main.js",
"static/chunks/fallback/pages/_app.js"
],
"/_error": [
"static/chunks/fallback/webpack.js",
"static/chunks/fallback/main.js",
"static/chunks/fallback/pages/_error.js"
]
},
"ampFirstPages": []
}
1 change: 1 addition & 0 deletions .next/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type": "commonjs"}
1 change: 1 addition & 0 deletions .next/react-loadable-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
136 changes: 136 additions & 0 deletions .next/server/_error.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .next/server/middleware-build-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .next/server/middleware-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sortedMiddleware": [],
"middleware": {},
"functions": {},
"version": 2
}
1 change: 1 addition & 0 deletions .next/server/middleware-react-loadable-manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__REACT_LOADABLE_MANIFEST={}
6 changes: 6 additions & 0 deletions .next/server/next-font-manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
self.__NEXT_FONT_MANIFEST={
"pages": {},
"app": {},
"appUsingSizeAdjust": false,
"pagesUsingSizeAdjust": false
}
6 changes: 6 additions & 0 deletions .next/server/next-font-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pages": {},
"app": {},
"appUsingSizeAdjust": false,
"pagesUsingSizeAdjust": false
}
5 changes: 5 additions & 0 deletions .next/server/pages-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"/_app": "pages/_app.js",
"/_error": "pages/_error.js",
"/_document": "pages/_document.js"
}
46 changes: 46 additions & 0 deletions .next/server/pages/_app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
(() => {
var exports = {};
exports.id = "pages/_app";
exports.ids = ["pages/_app"];
exports.modules = {

/***/ "./pages/index.css":
/*!*************************!*\
!*** ./pages/index.css ***!
\*************************/
/***/ (() => {



/***/ }),

/***/ "./pages/_app.js":
/*!***********************!*\
!*** ./pages/_app.js ***!
\***********************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.css */ \"./pages/index.css\");\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fYXBwLmpzLmpzIiwibWFwcGluZ3MiOiI7O0FBQW9CIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcGVyc29uYWxzaXRlLy4vcGFnZXMvX2FwcC5qcz9lMGFkIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBcIi4vaW5kZXguY3NzXCIiXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./pages/_app.js\n");

/***/ })

};
;

// load runtime
var __webpack_require__ = require("../webpack-runtime.js");
__webpack_require__.C(exports);
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
var __webpack_exports__ = (__webpack_exec__("./pages/_app.js"));
module.exports = __webpack_exports__;

})();
126 changes: 126 additions & 0 deletions .next/server/pages/_document.js

Large diffs are not rendered by default.

136 changes: 136 additions & 0 deletions .next/server/pages/_error.js

Large diffs are not rendered by default.

Loading