Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anna's portfolio #394

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
021a2bf
added header, projectsgallery section and imported, exported content,…
Anna2024WebDev Nov 1, 2024
08806ce
added images and updated ProjectsGallery.css
Anna2024WebDev Nov 1, 2024
dacdad0
added feature project section and added more styling to the different…
Anna2024WebDev Nov 2, 2024
16c0c12
added styling, created a skills.json file and lots more
Anna2024WebDev Nov 3, 2024
d4785a0
many changes such as added more styling and components
Anna2024WebDev Nov 3, 2024
60558e8
more styling
Anna2024WebDev Nov 4, 2024
37e1b85
changed profile pic and added more styling
Anna2024WebDev Nov 4, 2024
049fc49
changed font-size heading
Anna2024WebDev Nov 4, 2024
14dec3a
removal of extra folder
Anna2024WebDev Nov 4, 2024
6f90ba4
styling
Anna2024WebDev Nov 4, 2024
39be8a5
changed media queries for h2 heading
Anna2024WebDev Nov 4, 2024
aae08c3
updated styling
Anna2024WebDev Nov 4, 2024
e341971
more styling
Anna2024WebDev Nov 4, 2024
c28193d
styling media queries
Anna2024WebDev Nov 4, 2024
bcdad7e
styling
Anna2024WebDev Nov 4, 2024
a8547c3
more styling
Anna2024WebDev Nov 4, 2024
a03b16b
small fix
Anna2024WebDev Nov 5, 2024
e649eca
changed pics and added more styling
Anna2024WebDev Nov 5, 2024
d70d443
CSS fix
Anna2024WebDev Nov 5, 2024
b2bea9c
cleaned up code
Anna2024WebDev Nov 5, 2024
645f39b
small fix to media queries
Anna2024WebDev Nov 6, 2024
31da117
fixed projects gallery, added hover effects to gallery images, update…
Anna2024WebDev Nov 12, 2024
f46a84a
try fixing the problem with the upload of page
Anna2024WebDev Nov 12, 2024
bce9d77
updated text on buttons
Anna2024WebDev Nov 12, 2024
f25db21
updated image size on 320px screen
Anna2024WebDev Nov 12, 2024
4fb7735
increased image size image gallery on screen 320px
Anna2024WebDev Nov 12, 2024
85af11d
increased image size projects gallery
Anna2024WebDev Nov 12, 2024
1095a9d
removed redundant code
Anna2024WebDev Nov 12, 2024
bad331a
updated bio text
Anna2024WebDev Nov 12, 2024
a682763
updated intro-text
Anna2024WebDev Nov 12, 2024
a2b1e54
changed color button hover
Anna2024WebDev Nov 12, 2024
d75dd91
added cursor to hover effect and increased size on image when 320px s…
Anna2024WebDev Nov 13, 2024
1ef19ee
added transition to hover effect
Anna2024WebDev Nov 13, 2024
be7e6c8
removed padding bottom on article content
Anna2024WebDev Nov 13, 2024
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
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
38 changes: 38 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import js from '@eslint/js'
import globals from 'globals'
import react from 'eslint-plugin-react'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'

export default [
{ ignores: ['dist'] },
{
files: ['**/*.{js,jsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
ecmaVersion: 'latest',
ecmaFeatures: { jsx: true },
sourceType: 'module',
},
},
settings: { react: { version: '18.3' } },
plugins: {
react,
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...js.configs.recommended.rules,
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
...reactHooks.configs.recommended.rules,
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
]
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Anna's portfolio</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading