Skip to content

Commit 4df7bff

Browse files
committed
initial commit
0 parents  commit 4df7bff

28 files changed

+223
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Avoid accidental upload of the Sketch and Figma design files
2+
#####################################################
3+
## Please do not remove lines 5 and 6 - thanks! 🙂 ##
4+
#####################################################
5+
*.sketch
6+
*.fig
7+
8+
# Avoid accidental XD upload if you convert the design file
9+
###############################################
10+
## Please do not remove line 12 - thanks! 🙂 ##
11+
###############################################
12+
*.xd
13+
14+
# Avoid your project being littered with annoying .DS_Store files!
15+
.DS_Store
16+
.prettierignore
17+
style-guide.md
18+
README.md

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.acceptSuggestionOnEnter": "on"
3+
}

README-template.md

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Frontend Mentor - Intro section with dropdown navigation solution
2+
3+
This is a solution to the [Intro section with dropdown navigation challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/intro-section-with-dropdown-navigation-ryaPetHE5). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
4+
5+
## Table of contents
6+
7+
- [Overview](#overview)
8+
- [The challenge](#the-challenge)
9+
- [Screenshot](#screenshot)
10+
- [Links](#links)
11+
- [My process](#my-process)
12+
- [Built with](#built-with)
13+
- [What I learned](#what-i-learned)
14+
- [Continued development](#continued-development)
15+
- [Useful resources](#useful-resources)
16+
- [Author](#author)
17+
- [Acknowledgments](#acknowledgments)
18+
19+
**Note: Delete this note and update the table of contents based on what sections you keep.**
20+
21+
## Overview
22+
23+
### The challenge
24+
25+
Users should be able to:
26+
27+
- View the relevant dropdown menus on desktop and mobile when interacting with the navigation links
28+
- View the optimal layout for the content depending on their device's screen size
29+
- See hover states for all interactive elements on the page
30+
31+
### Screenshot
32+
33+
![](./screenshot.jpg)
34+
35+
Add a screenshot of your solution. The easiest way to do this is to use Firefox to view your project, right-click the page and select "Take a Screenshot". You can choose either a full-height screenshot or a cropped one based on how long the page is. If it's very long, it might be best to crop it.
36+
37+
Alternatively, you can use a tool like [FireShot](https://getfireshot.com/) to take the screenshot. FireShot has a free option, so you don't need to purchase it.
38+
39+
Then crop/optimize/edit your image however you like, add it to your project, and update the file path in the image above.
40+
41+
**Note: Delete this note and the paragraphs above when you add your screenshot. If you prefer not to add a screenshot, feel free to remove this entire section.**
42+
43+
### Links
44+
45+
- Solution URL: [Add solution URL here](https://your-solution-url.com)
46+
- Live Site URL: [Add live site URL here](https://your-live-site-url.com)
47+
48+
## My process
49+
50+
### Built with
51+
52+
- Semantic HTML5 markup
53+
- CSS custom properties
54+
- Flexbox
55+
- CSS Grid
56+
- Mobile-first workflow
57+
- [React](https://reactjs.org/) - JS library
58+
- [Next.js](https://nextjs.org/) - React framework
59+
- [Styled Components](https://styled-components.com/) - For styles
60+
61+
**Note: These are just examples. Delete this note and replace the list above with your own choices**
62+
63+
### What I learned
64+
65+
Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.
66+
67+
To see how you can add code snippets, see below:
68+
69+
```html
70+
<h1>Some HTML code I'm proud of</h1>
71+
```
72+
```css
73+
.proud-of-this-css {
74+
color: papayawhip;
75+
}
76+
```
77+
```js
78+
const proudOfThisFunc = () => {
79+
console.log('🎉')
80+
}
81+
```
82+
83+
If you want more help with writing markdown, we'd recommend checking out [The Markdown Guide](https://www.markdownguide.org/) to learn more.
84+
85+
**Note: Delete this note and the content within this section and replace with your own learnings.**
86+
87+
### Continued development
88+
89+
Use this section to outline areas that you want to continue focusing on in future projects. These could be concepts you're still not completely comfortable with or techniques you found useful that you want to refine and perfect.
90+
91+
**Note: Delete this note and the content within this section and replace with your own plans for continued development.**
92+
93+
### Useful resources
94+
95+
- [Example resource 1](https://www.example.com) - This helped me for XYZ reason. I really liked this pattern and will use it going forward.
96+
- [Example resource 2](https://www.example.com) - This is an amazing article which helped me finally understand XYZ. I'd recommend it to anyone still learning this concept.
97+
98+
**Note: Delete this note and replace the list above with resources that helped you during the challenge. These could come in handy for anyone viewing your solution or for yourself when you look back on this project in the future.**
99+
100+
## Author
101+
102+
- Website - [Add your name here](https://www.your-site.com)
103+
- Frontend Mentor - [@yourusername](https://www.frontendmentor.io/profile/yourusername)
104+
- Twitter - [@yourusername](https://www.twitter.com/yourusername)
105+
106+
**Note: Delete this note and add/remove/edit lines above based on what links you'd like to share.**
107+
108+
## Acknowledgments
109+
110+
This is where you can give a hat tip to anyone who helped you out on this project. Perhaps you worked in a team or got some inspiration from someone else's solution. This is the perfect place to give them some credit.
111+
112+
**Note: Delete this note and edit this section's content as necessary. If you completed this challenge by yourself, feel free to delete this section entirely.**

design/active-states.jpg

66.1 KB
Loading

design/desktop-design.jpg

58.5 KB
Loading

design/desktop-preview.jpg

64.7 KB
Loading

design/mobile-design.jpg

30.7 KB
Loading

design/mobile-menu-collapsed.jpg

12.5 KB
Loading

design/mobile-menu-expanded.jpg

16.9 KB
Loading

details.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Main Features:
2+
- desktop and mobile view (Responsiveness)
3+
- logo-menubar-login-Register
4+
- dropdown navigation
5+
-Hero Section
6+
- Hero-Text
7+
- Hero-Image
8+
- h1,p and button
9+
- 4 brand-names

images/client-audiophile.svg

+1
Loading

images/client-databiz.svg

+1
Loading

images/client-maker.svg

+1
Loading

images/client-meet.svg

+1
Loading

images/favicon-32x32.png

1.04 KB
Loading

images/icon-arrow-down.svg

+1
Loading

images/icon-arrow-up.svg

+1
Loading

images/icon-calendar.svg

+1
Loading

images/icon-close-menu.svg

+1
Loading

images/icon-menu.svg

+1
Loading

images/icon-planning.svg

+1
Loading

images/icon-reminders.svg

+1
Loading

images/icon-todo.svg

+1
Loading

images/image-hero-desktop.png

149 KB
Loading

images/image-hero-mobile.png

65.6 KB
Loading

0 commit comments

Comments
 (0)