generated from Technigo/react-vite-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 55
Kausar Portfolio β Technigo Bootcamp Project 2025 #56
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
Open
KausarShangareeva
wants to merge
11
commits into
Technigo:main
Choose a base branch
from
KausarShangareeva:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ef589a8
My progect
KausarShangareeva 398afca
README Update
KausarShangareeva c1300c2
Update
KausarShangareeva 4009fe7
Update
KausarShangareeva 7d33431
Update
KausarShangareeva 4407a04
Update
KausarShangareeva ecb6e22
Update
KausarShangareeva abfc912
I added favicon
KausarShangareeva 1e1f6fd
I added link to website
KausarShangareeva 713b9ac
I updated the screen photo
KausarShangareeva 5709ec7
fix: improve accessibility, add aria-labels, fix heading order
KausarShangareeva File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,178 @@ | ||
| # Portfolio | ||
| # π‘ Kausar Portfolio | ||
|
|
||
| **Kausar Portfolio** is a modern, interactive portfolio website built during Technigoβs JavaScript Bootcamp (August 2025). The project showcases my skills, projects, blog articles, and tech stack, demonstrating responsive design, dynamic content, and interactive UI components. | ||
|
|
||
| The live project is available on [Netlify](https://kausarshangareeva-portfolio.netlify.app/). | ||
|
|
||
| --- | ||
|
|
||
| ## π Demo | ||
|
|
||
| Check it out here: [Kausar Portfolio on Netlify](https://kausarshangareeva-portfolio.netlify.app/) | ||
|
|
||
| --- | ||
|
|
||
| ## πΈ Screenshot | ||
|
|
||
| ##  | ||
|
|
||
| ## π Features | ||
|
|
||
| - π **Hero Section:** Intro with images and description | ||
| - π οΈ **Tech Section:** List of technologies and skills with interactive tags | ||
| - ποΈ **Featured Projects Section:** Project cards with images, tags, descriptions, and action buttons | ||
| - π» **Skills Section:** Skills and tools displayed in responsive columns | ||
| - π **Blog Section:** Articles with images, titles, dates, and buttons for reading | ||
| - π± Fully **responsive layout** β adapts for desktop, tablet, and mobile | ||
| - π¨ **Interactive UI components:** Buttons, tags, cards, burger menu | ||
| - π **Data-driven content** from JSON files for projects, skills, articles, and tech | ||
|
|
||
| --- | ||
|
|
||
| ## π§° Tech Stack / What I Built With | ||
|
|
||
| - **React.js** for building modular and reusable components | ||
| - **Styled-Components** for styling and media queries | ||
| - **JavaScript (ES6+)** for logic, mapping, filtering, and dynamic rendering | ||
| - **JSON** files to manage structured data: aboutMe, projectsData, articlesData, skillsData, techData | ||
| - **Vite** for fast development and bundling | ||
| - **SVG Icons & Lucide** for interactive icons and buttons | ||
|
|
||
| --- | ||
|
|
||
| ## π§ How It Works | ||
|
|
||
| 1. **Hero Section**: Displays greeting text with animated images. | ||
| 2. **Tech Section**: Shows my tech stack with dynamic tags. | ||
| 3. **Featured Projects Section**: Projects rendered dynamically with images, descriptions, and action buttons. Layout adapts for even/odd projects. | ||
| 4. **Skills Section**: Highlights my skills with interactive tags in columns. | ||
| 5. **Blog Section**: Articles displayed from JSON data, including image, title, description, and publication date. | ||
| 6. **Footer Section**: Contains contact info, social icons, and avatar. | ||
| 7. **Responsive Design**: Uses styled-components media queries to adjust layout, images, and typography for different screen sizes. | ||
| 8. **Dynamic Content**: All sections fetch data from JSON files, making it easy to update or expand. | ||
|
|
||
| --- | ||
|
|
||
| ## π File Structure | ||
|
|
||
| ``` | ||
| src/ | ||
| β | ||
| βββ π data/ | ||
| β βββ aboutMe.json | ||
| β βββ projectsData.json | ||
| β βββ articlesData.json | ||
| β βββ skillsData.json | ||
| β βββ techData.json | ||
| β | ||
| βββ π Assets/ | ||
| β βββ Button/ | ||
| β β βββ ButtonIcons/ | ||
| β β βββ Button.jsx | ||
| β β βββ ButtonData.js | ||
| β β | ||
| β βββ Tag/ | ||
| β β βββ TagIcins/ | ||
| β β βββ TagComponents.jsx | ||
| β β βββ TagData.js | ||
| β β | ||
| β βββ Typography | ||
| β β | ||
| β βββ Image/ | ||
| β β βββ ImagBlog/ | ||
| β β βββ ImagHero/ | ||
| β β βββ ImagProject/ | ||
| β β | ||
| β βββ Icon/ | ||
| β βββ Icons/ | ||
| β βββ IconData.js | ||
| | | ||
| | | ||
| βββ π Styles/ | ||
| β β | ||
| β βββ HeroSection/ | ||
| β βββ GlobalStyles.js | ||
| β βββ responsive.js | ||
| β | ||
| βββ π Sections/ | ||
| β β | ||
| β βββ HeroSection/ | ||
| β β βββ HeroSection.jsx | ||
| β β βββ HeroSection.styles.js | ||
| β β βββ components/ | ||
| β β βββ HeroImages.jsx | ||
| β β βββ HeroDescription.jsx | ||
| β β | ||
| β βββ TechSection/ | ||
| β β βββ TechSection.jsx | ||
| β β βββ components/ | ||
| β β βββ TechColumn.jsx | ||
| β β βββ TechTagList.jsx | ||
| β β βββ TechTagItem.jsx | ||
| β β | ||
| β βββ FeaturedProjectsSection/ | ||
| β β βββ FeaturedProjectsSection.jsx | ||
| β β βββ components/ | ||
| β β βββ ProjectCard.jsx | ||
| β β βββ ProjectImage.jsx | ||
| β β βββ ProjectTags.jsx | ||
| β β βββ ProjectTitle.jsx | ||
| β β βββ ProjectDescription.jsx | ||
| β β βββ ProjectButtons.jsx | ||
| β β | ||
| β βββ SkillsSection/ | ||
| β β βββ SkillsSection.jsx | ||
| β β βββ components/ | ||
| β β βββ SkillsColumn.jsx | ||
| β β βββ SkillsTagList.jsx | ||
| β β βββ SkillsTagItem.jsx | ||
| β β | ||
| β βββ BlogSection/ | ||
| β β βββ BlogSection.jsx | ||
| β β βββ components/ | ||
| β β βββ BlogCard.jsx | ||
| β β βββ BlogImage.jsx | ||
| β β βββ BlogDate.jsx | ||
| β β βββ BlogTitle.jsx | ||
| β β βββ BlogDescription.jsx | ||
| β β βββ BlogButton.jsx | ||
| β β | ||
| β βββ FooterSection/ | ||
| β βββ FooterSection.jsx | ||
| β βββ components/ | ||
| β βββ Avatar.jsx | ||
| β βββ FooterContacts.jsx | ||
| β βββ FooterIcons.jsx | ||
| β | ||
| |ββ App.jsx | ||
| βββ main.jsx | ||
| ``` | ||
|
|
||
| --- | ||
|
|
||
| ## π What I Learned | ||
|
|
||
| - Structuring a React project with multiple sections and reusable components | ||
| - Creating **responsive layouts** with styled-components and media queries | ||
| - Dynamically rendering content from JSON using `.map()` | ||
| - Implementing **interactive UI elements** like buttons, tags, and cards | ||
| - Handling images and icons for different screen sizes | ||
| - Managing props and component state effectively | ||
| - Combining frontend design and programming skills to build a full portfolio website | ||
|
|
||
| --- | ||
|
|
||
| ## π Next Steps | ||
|
|
||
| - Add filtering and search for projects and blog posts | ||
| - Implement dark/light mode toggle | ||
| - Add a contact form with email submission | ||
| - Optimize images for performance and faster loading | ||
| - Expand blog section with categories and pagination | ||
|
|
||
| --- | ||
|
|
||
| ## π License | ||
|
|
||
| This project is free to use for educational purposes. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [LocalizedFileNames] | ||
| portfolio-screen.png=@portfolio-screen,0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,21 @@ | ||
| export const App = () => { | ||
| import { GlobalStyles } from "./styles/GlobalStyles"; | ||
| import HeroSection from "./Sections/HeroSection/HeroSection"; | ||
| import TechSection from "./Sections/TechSection/TechSection"; | ||
| import FeaturedProjectsSection from "./Sections/FeaturedProjectsSection/FeaturedProjectsSection"; | ||
| import SkillsSection from "./Sections/SkillsSection/SkillsSection"; | ||
| import BlogSection from "./Sections/BlogSection/BlogSection"; | ||
| import FooterSection from "./Sections/FooterSection/FooterSection"; | ||
|
|
||
| export default function App() { | ||
| return ( | ||
| <> | ||
| <h1>Portfolio</h1> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem, laborum! Maxime animi nostrum facilis distinctio neque labore consectetur beatae eum ipsum excepturi voluptatum, dicta repellendus incidunt fugiat, consequatur rem aperiam.</p> | ||
| <GlobalStyles /> | ||
| <HeroSection /> | ||
| <TechSection /> | ||
| <FeaturedProjectsSection /> | ||
| <SkillsSection /> | ||
| <BlogSection /> | ||
| <FooterSection /> | ||
|
Comment on lines
+12
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice and clean structure in App |
||
| </> | ||
| ) | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| import { BlogCard } from "./components/BlogCard"; | ||
| import { SectionTitle } from "../../assets/Typography"; | ||
| import articlesData from "../../data/articlesData.json"; | ||
| import styled from "styled-components"; | ||
| import { respond } from "../../styles/responsive"; | ||
|
|
||
| const SectionStyle = styled.section` | ||
| padding: 0 16px; | ||
| `; | ||
|
|
||
| const SectionDiv = styled.div` | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 120px; | ||
| max-width: 1000px; | ||
| margin: 0 auto; | ||
|
|
||
| ${respond("tab-port")} { | ||
| gap: 100px; | ||
| } | ||
| `; | ||
|
|
||
| export default function BlogSection() { | ||
| return ( | ||
| <SectionStyle> | ||
| <SectionDiv> | ||
| <SectionTitle>My words</SectionTitle> | ||
| {articlesData.articles.map((article, index) => ( | ||
| <BlogCard data={article} key={article.id} index={index} /> | ||
| ))} | ||
| </SectionDiv> | ||
| </SectionStyle> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| import { BlackButton } from "../../../assets/Button/Button"; | ||
| import styled from "styled-components"; | ||
|
|
||
| const ButtonBox = styled.div` | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 8px; | ||
| `; | ||
|
|
||
| export default function BlogButtons({ button }) { | ||
| return ( | ||
| <ButtonBox> | ||
| {button && | ||
| button.map((btn) => <BlackButton type={btn.name} href={btn.link} />)} | ||
| </ButtonBox> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| import BlogImage from "./BlogImage"; | ||
| import BlogTitle from "./BlogTitle"; | ||
| import BlogDescription from "./BlogDescription"; | ||
| import BlogDate from "./BlogDate"; | ||
| import BlogButtons from "./BlogButtons"; | ||
| import styled from "styled-components"; | ||
| import { respond } from "../../../styles/responsive"; | ||
|
|
||
| const DivStyle = styled.div` | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 120px; | ||
|
|
||
| ${respond("tab-port")} { | ||
| flex-direction: column; | ||
| gap: 50px; | ||
| } | ||
| `; | ||
|
|
||
| const DivBox = styled.div` | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 30px; | ||
| `; | ||
|
|
||
| export function BlogCard({ data }) { | ||
| return ( | ||
| <DivStyle className="projectCard"> | ||
| <BlogImage src={data.imgSrc} alt={data.imgtitle} /> | ||
| <DivBox> | ||
| <BlogDate date={data.date} /> | ||
| <BlogTitle title={data.title} /> | ||
| <BlogDescription desc={data.desc} /> | ||
| <BlogButtons button={data.button} /> | ||
| </DivBox> | ||
| </DivStyle> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import styled from "styled-components"; | ||
|
|
||
| const DateStyle = styled.span` | ||
| display: inline-block; | ||
| width: fit-content; | ||
| padding: 6px 13px; | ||
| font-weight: bold; | ||
| font-size: 18px; | ||
| background: rgba(255, 255, 255, 0.39); | ||
| border-radius: 10px; | ||
| box-shadow: 0 4px 30px rgba(0, 0, 0, 0.014); | ||
| backdrop-filter: blur(10.8px); | ||
| -webkit-backdrop-filter: blur(10.8px); | ||
| border: 1px solid rgba(255, 255, 255, 1); | ||
| color: #000; | ||
| border: 2px solid #000; | ||
| `; | ||
|
|
||
| export default function BlogDate({ date }) { | ||
| return <DateStyle>{date}</DateStyle>; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| import { Paragraph } from "../../../assets/Typography"; | ||
|
|
||
| export default function BlogDescription({ desc }) { | ||
| return <Paragraph>{desc}</Paragraph>; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| import styled from "styled-components"; | ||
| import { respond } from "../../../styles/responsive"; | ||
|
|
||
| const ImgStyle = styled.img` | ||
| width: 400px; | ||
| height: 400px; | ||
| border-radius: 20px; | ||
| object-fit: cover; | ||
|
|
||
| ${respond("tab-port")} { | ||
| width: 100%; | ||
| max-width: 800px; | ||
| height: 400px; | ||
| } | ||
| `; | ||
| export default function BlogImage({ src, alt }) { | ||
| return <ImgStyle src={src} alt={alt} />; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| import { TitleH3 } from "../../../assets/Typography"; | ||
|
|
||
| export default function BlogTitle({ title }) { | ||
| return <TitleH3 align="Left">{title}</TitleH3>; | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great readme! Very detailed :) My only input here is that you could mention that you used react already in first section.