Skip to content

Commit

Permalink
set up
Browse files Browse the repository at this point in the history
  • Loading branch information
joanita-51 committed Jul 9, 2022
1 parent d00d421 commit eb1d4c9
Show file tree
Hide file tree
Showing 22 changed files with 147 additions and 4 deletions.
2 changes: 2 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
]
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.5"
}
}
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
1 change: 0 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link href="/dist/output.css" rel="stylesheet">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>Quiz App</title>
</head>
Expand Down
2 changes: 0 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import logo from './logo.svg';
import './App.css';

function App() {
return (
Expand Down
9 changes: 9 additions & 0 deletions src/components/Button.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Button = () => {
return (
<div>Button</div>
)
}

export default Button
9 changes: 9 additions & 0 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Footer = () => {
return (
<div>Footer</div>
)
}

export default Footer
9 changes: 9 additions & 0 deletions src/components/Header.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Header = () => {
return (
<div>Header</div>
)
}

export default Header
9 changes: 9 additions & 0 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Navbar = () => {
return (
<div>Navbar</div>
)
}

export default Navbar
9 changes: 9 additions & 0 deletions src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Sidebar = () => {
return (
<div>Sidebar</div>
)
}

export default Sidebar
9 changes: 9 additions & 0 deletions src/components/UserProfile.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const UserProfile = () => {
return (
<div>UserProfile</div>
)
}

export default UserProfile
Empty file added src/components/index.jsx
Empty file.
8 changes: 8 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

body {
margin: 0;
padding:0;
font-family: "Open Sans", sans-serif;
}

@tailwind base;
@tailwind components;
@tailwind utilities;
9 changes: 9 additions & 0 deletions src/pages/Dashboard.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Dashboard = () => {
return (
<div>Dashboard</div>
)
}

export default Dashboard
9 changes: 9 additions & 0 deletions src/pages/Landing.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Landing = () => {
return (
<div>landing</div>
)
}

export default Landing
9 changes: 9 additions & 0 deletions src/pages/Login.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Login = () => {
return (
<div>Login</div>
)
}

export default Login
9 changes: 9 additions & 0 deletions src/pages/Logout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Logout = () => {
return (
<div>Logout</div>
)
}

export default Logout
9 changes: 9 additions & 0 deletions src/pages/Notifications.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Notifications = () => {
return (
<div>Notifications</div>
)
}

export default Notifications
9 changes: 9 additions & 0 deletions src/pages/Profile.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Profile = () => {
return (
<div>Profile</div>
)
}

export default Profile
9 changes: 9 additions & 0 deletions src/pages/Results.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Results = () => {
return (
<div>Results</div>
)
}

export default Results
9 changes: 9 additions & 0 deletions src/pages/SignUp.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const SignUp = () => {
return (
<div>SignUp</div>
)
}

export default SignUp
4 changes: 3 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js}"],
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
Expand Down

0 comments on commit eb1d4c9

Please sign in to comment.