Skip to content

Commit 8bcfb8d

Browse files
committed
Initial Commit
0 parents  commit 8bcfb8d

43 files changed

Lines changed: 16770 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# Compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
34+
/connect.lock
35+
/coverage
36+
/libpeerconnection.log
37+
testem.log
38+
/typings
39+
40+
# System files
41+
.DS_Store
42+
Thumbs.db

README.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# DevSpot
2+
3+
# Terminal Portfolio 🌐
4+
5+
_A terminal-inspired portfolio built using Angular._
6+
7+
![Angular](https://img.shields.io/badge/Angular-v17-red)
8+
![TypeScript](https://img.shields.io/badge/TypeScript-4.9-blue)
9+
![Status](https://img.shields.io/badge/Status-Completed-success)
10+
11+
## Description
12+
13+
Terminal Portfolio is a modern and dynamic portfolio that mimics a terminal interface.
14+
It features typing animations, command-based navigation, and a sleek design to showcase my skills, projects, and contact information in a unique way.
15+
16+
This project is built using Angular and incorporates CSS animations to deliver an interactive user experience.
17+
18+
## Features
19+
20+
- **Typing Animation**: Terminal-style introduction with a dynamic typing effect.
21+
- **Command Line Navigation**: Supports commands like `help`, `about`, `skills`, `projects`, and `contact`.
22+
- **Responsive Design**: Fully responsive and works seamlessly across devices.
23+
- **Angular-Powered**: Built using Angular 17 and TypeScript for a robust and scalable structure.
24+
25+
## Demo
26+
27+
🎯 **Live Demo**: [View Portfolio](https://sids-projects.github.io/DevSpot/#/home)
28+
29+
## Technologies Used
30+
31+
- **Frontend**: Angular 17, TypeScript, HTML5, CSS3
32+
- **Styling**: Custom CSS animations
33+
- **Design Tools**: Adobe Illustrator, Figma
34+
35+
## Contact
36+
37+
Feel free to reach out:
38+
39+
- **Portfolio**: [sids-projects.github.io/TerminalPortfolio](https://sids-projects.github.io/DevSpot/#/)
40+
- **Email**: siddarthg.dev@gmail.com
41+
- **GitHub**: [Sids-projects](https://github.com/Sids-projects)
42+
43+
## Acknowledgments
44+
45+
Special thanks to:
46+
47+
- Angular community for documentation and support.
48+
- [Hyper](https://hyper.is/) for terminal UI inspiration.
49+
50+
## Future Enhancements
51+
52+
- Add more commands like `experience` and `education`.
53+
- Integrate dynamic data fetching for projects and contact details.

angular.json

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"DevSpot": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss",
11+
"standalone": false
12+
},
13+
"@schematics/angular:directive": {
14+
"standalone": false
15+
},
16+
"@schematics/angular:pipe": {
17+
"standalone": false
18+
}
19+
},
20+
"root": "",
21+
"sourceRoot": "src",
22+
"prefix": "app",
23+
"architect": {
24+
"build": {
25+
"builder": "@angular-devkit/build-angular:browser",
26+
"options": {
27+
"outputPath": "docs",
28+
"index": "src/index.html",
29+
"main": "src/main.ts",
30+
"polyfills": ["zone.js"],
31+
"tsConfig": "tsconfig.app.json",
32+
"inlineStyleLanguage": "scss",
33+
"assets": ["src/favicon.ico", "src/assets"],
34+
"styles": [
35+
"@angular/material/prebuilt-themes/indigo-pink.css",
36+
"src/styles.scss"
37+
],
38+
"scripts": []
39+
},
40+
"configurations": {
41+
"production": {
42+
"budgets": [
43+
{
44+
"type": "initial",
45+
"maximumWarning": "2mb",
46+
"maximumError": "1mb"
47+
},
48+
{
49+
"type": "anyComponentStyle",
50+
"maximumWarning": "2mb",
51+
"maximumError": "4mb"
52+
}
53+
],
54+
"outputHashing": "all"
55+
},
56+
"development": {
57+
"optimization": false,
58+
"extractLicenses": false,
59+
"sourceMap": true
60+
}
61+
},
62+
"defaultConfiguration": "production"
63+
},
64+
"serve": {
65+
"builder": "@angular-devkit/build-angular:dev-server",
66+
"configurations": {
67+
"production": {
68+
"buildTarget": "DevSpot:build:production"
69+
},
70+
"development": {
71+
"buildTarget": "DevSpot:build:development"
72+
}
73+
},
74+
"defaultConfiguration": "development"
75+
},
76+
"extract-i18n": {
77+
"builder": "@angular-devkit/build-angular:extract-i18n",
78+
"options": {
79+
"buildTarget": "DevSpot:build"
80+
}
81+
},
82+
"test": {
83+
"builder": "@angular-devkit/build-angular:karma",
84+
"options": {
85+
"polyfills": ["zone.js", "zone.js/testing"],
86+
"tsConfig": "tsconfig.spec.json",
87+
"inlineStyleLanguage": "scss",
88+
"assets": ["src/favicon.ico", "src/assets"],
89+
"styles": [
90+
"@angular/material/prebuilt-themes/indigo-pink.css",
91+
"src/styles.scss"
92+
],
93+
"scripts": []
94+
}
95+
}
96+
}
97+
}
98+
}
99+
}

0 commit comments

Comments
 (0)