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

File Structure #67

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/ISSue_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🐛 Bug
name: 🐛 Bug Report
description: Report an issue to help improve the project.
labels: ["🛠 goal: fix", "🚦 status: awaiting triage"]
body:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSue_TEMPLATE/feature_report.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 📄 Feature Request
name: 📄 New Feature Request
description: Want to add a new Feature? use this
title: "[Feat] <description>"
labels: ["📄 aspect: feature", "🚦 status: awaiting triage"]
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name="description"
content="Collection of Reusable Web Components"
/>
<link rel="apple-touch-icon" href="logo.png" />
<link rel="apple-touch-icon" href="../src/assets/logo.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand Down
Binary file removed public/logo.png
Binary file not shown.
3 changes: 3 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import React, { useEffect } from "react";
import { BrowserRouter, Route, Routes, useLocation } from "react-router-dom";
import Homepage from "./pages/Homepage";
import Footer from "./components/Footer/Footer";
import Header from "./components/Header/Header";
import { NavigationLeft } from "./components/LeftNavigation/NavigationLeft";
import { Avatar } from "./pages/Avatar";
import { Card } from "./pages/Card";
import { Alert } from "./pages/Alert";
Expand Down
7 changes: 0 additions & 7 deletions src/Css/Footer.css

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import React, { useState } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import './Accordion.css';
import Expand from '../assets/expand_more.png';
import Expand from './expand_more.png';

// Individual Accordion Item component
const AccordionItem = ({ item, index, isActive, onClick }) => {
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import "../Css/Header.css";
import "./Header.css";

const Header = () => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import { NavLink } from "react-router-dom"
import "../Css/NavigationLeft.css"
import "./NavigationLeft.css"

export const NavigationLeft = () => {
return (
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pages/FooterPage.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Heading } from "../components/Heading";
import Footer from "../components/Footer";
import CustomFooter from "../components/CustomFooter";
import Footer from "../components/Footer/Footer";
import CustomFooter from "../components/CustomFooter/CustomFooter";
import BottomNav from "../components/Bottom Nav bar/BottomNavBar";
export const FooterPage = () => {
return (
Expand Down
7 changes: 7 additions & 0 deletions src/pages/Homepage.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// import Button from "../components/Button";
// import arrowRight from "../assets/arrow-right.svg";
// import Accordion from "../components/Accordion/Accordion";
// import Modal from "../components/Modal";
// import Feature6 from "../components/TopHeader";
// import Footer from "../components/Footer/Footer";
// import Login from "../components/Login/Login";
import React, { Fragment } from "react";
import BottomNav from "../components/Bottom Nav bar/BottomNavBar";
import Sidebar from "../components/Sidebar";
Expand Down
Loading