Skip to content

Commit e9519d3

Browse files
committed
Refactor project structure: remove unused files and integrate Tailwind CSS for styling
1 parent 286c399 commit e9519d3

37 files changed

Lines changed: 6463 additions & 1681 deletions

.Rprofile

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/publish.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
.Rproj.user
2-
.Rhistory
3-
.RData
4-
.Ruserdata
51
node_modules
6-
*.Rproj

DDH2004.github.io.Rproj

Lines changed: 0 additions & 13 deletions
This file was deleted.

_quarto.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

about.qmd

Lines changed: 0 additions & 9 deletions
This file was deleted.

declarations.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module '*.md?raw' {
2+
const content: string;
3+
export default content;
4+
}

eslint.config.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import js from '@eslint/js';
2+
import globals from 'globals';
3+
import reactHooks from 'eslint-plugin-react-hooks';
4+
import reactRefresh from 'eslint-plugin-react-refresh';
5+
import tseslint from 'typescript-eslint';
6+
7+
export default tseslint.config(
8+
{ ignores: ['dist'] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ['**/*.{ts,tsx}'],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
'react-hooks': reactHooks,
18+
'react-refresh': reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
'react-refresh/only-export-components': [
23+
'warn',
24+
{ allowConstantExport: true },
25+
],
26+
},
27+
}
28+
);

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Akhil Devarasetty | CSE Student & Developer</title>
8+
<meta name="description" content="Personal website of Akhil Devarasetty - Computer Science and Engineering Student">
9+
</head>
10+
<body>
11+
<div id="root"></div>
12+
<script type="module" src="/src/main.tsx"></script>
13+
</body>
14+
</html>

index.qmd

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)