making it work but it's sort of a mess

This commit is contained in:
Arjun Patel
2022-01-10 22:51:06 -08:00
parent 91a01f7b7c
commit 81a7358452
1583 changed files with 26 additions and 4 deletions
+10 -4
View File
@@ -1,5 +1,6 @@
import '../styles/globals.css'
import Head from 'next/head'
import Script from 'next/script'
function MyApp({ Component, pageProps }) {
return <>
@@ -28,12 +29,17 @@ function MyApp({ Component, pageProps }) {
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
<link href="assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
<link href="assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
<link href="/assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
<link href="/assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
</Head>
<Component {...pageProps} />
<body>
<Component {...pageProps} />
<Script type="text/javascript" defer src="/assets/plugins/global/plugins.bundle.js"></Script>
<Script type="text/javascript" defer src="/assets/js/scripts.bundle.js"></Script>
</body>
</>
}
+16
View File
@@ -279,11 +279,27 @@ export default class Demo extends React.Component<MyProps, MyState> {
<Image className="" src={"/avatars/svg/Artboards_Diversity_Avatars_by_Netguru-22.svg"} alt="profile" width={30} height={30} />
</span>
</span>
<div className="symbol-group symbol-hover flex-nowrap flex-grow-1 min-w-100px pe-2">
<div className="symbol symbol-circle symbol-25px">
<img src="/avatars/svg/Artboards_Diversity_Avatars_by_Netguru-20.svg" alt="img" />
</div>
<div className="symbol symbol-circle symbol-25px">
<img src={"/avatars/svg/Artboards_Diversity_Avatars_by_Netguru-22.svg"} alt="img" />
</div>
<div className="symbol symbol-circle symbol-25px">
<div className="symbol-label fs-8 fw-bold bg-primary text-inverse-primary">A</div>
</div>
</div>
<span className='flex flex-col items-baseline'>
<span className='font-bold text-black mr-auto'>Bugs</span>
<span className='text-xs text-gray-400'>started 5 minutes ago</span>
<div className="min-w-125px pe-2">
<span className="badge badge-light-primary">In Progress</span>
</div>
</span>
</span>

Some files were not shown because too many files have changed in this diff Show More