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

feat: new design #1728

Merged
merged 26 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
edfbc95
fix: remove old site data
droshev Oct 18, 2023
597c908
feat: site draft
droshev Oct 18, 2023
c0cbb73
fix: netlify
droshev Oct 18, 2023
79e789f
chore: update node version
droshev Oct 18, 2023
a561553
fix: index.html path
droshev Oct 19, 2023
64fef42
fix: move styles from global to the component
droshev Oct 19, 2023
54f346d
fix: update styling budget configuration
droshev Oct 19, 2023
eb00b65
fix: minor styling updates
kalo2711 Oct 23, 2023
9162817
fix: working footer, until 1555px
kalo2711 Oct 23, 2023
86d2bcd
fix: first version website complete
kalo2711 Oct 24, 2023
bb84831
fix: second version website complete
kalo2711 Oct 24, 2023
9b14ff6
fix: bem and semantic markup, broken convention and footer
kalo2711 Oct 27, 2023
f104d3a
fix: finished optimization, broken footer left
kalo2711 Oct 30, 2023
151e44f
fix: bem visual version 1
kalo2711 Oct 31, 2023
be8aeda
fix: image quality and minor fixes, scrolling behaviour left
kalo2711 Oct 31, 2023
ce2b60a
fix: components and styling, secondarybutton broken
kalo2711 Nov 16, 2023
4016b14
fix: footer, components sizing and scrolling behaviour
kalo2711 Nov 17, 2023
586623b
fix: code review modifications, animation and scrolling behaviour fixes
kalo2711 Nov 20, 2023
1f9756b
fix: performance, accessibility, image quality
kalo2711 Nov 22, 2023
d3acbe9
fix: webfront load
kalo2711 Nov 22, 2023
82fd6c1
fix: image resizing, aspect ratio, links
kalo2711 Nov 23, 2023
09c7bed
fix: crawlable links, image scaling
kalo2711 Nov 23, 2023
7a1b007
fix: link verification
kalo2711 Nov 23, 2023
40c3487
fix: demo website
kalo2711 Nov 23, 2023
8cd66e2
fix: lighthouse maxed out
kalo2711 Nov 23, 2023
f712191
fix: final
kalo2711 Nov 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
63 changes: 38 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,40 @@
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
.idea
.vscode
# build
.tmp
*.log
*.tgz
__diff_output__
storybook-static
.storybook/static/*.woff
.storybook/static/72-Bold.woff
.storybook/static/72-Light.woff
.storybook/static/72-Regular.woff
.storybook/static/SAP-icons.woff
.storybook/static/HCB_css_variables.css
.storybook/static/HCW_css_variables.css
.storybook/static/css_variables.css
.storybook/static/dark_css_variables.css
.storybook/static/light_dark_css_variables.css
stories/docs/
dist
node_modules

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.17.0
v18.18.2
49 changes: 0 additions & 49 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"liveServer.settings.port": 5501,
"files.autoSave": "afterDelay"
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
107 changes: 107 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"fd": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "200kb",
"maximumError": "400kb"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "fd:build:production"
},
"development": {
"browserTarget": "fd:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "fd:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": []
}
}
}
}
},
"cli": {
"analytics": false
}
}
6 changes: 0 additions & 6 deletions docs/404.md

This file was deleted.

4 changes: 0 additions & 4 deletions docs/Gemfile

This file was deleted.

Loading
Loading