Skip to content

Commit

Permalink
using src directory
Browse files Browse the repository at this point in the history
  • Loading branch information
s2sharpit committed Jun 23, 2023
1 parent 034157b commit 54e8d3b
Show file tree
Hide file tree
Showing 47 changed files with 9 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions lib/fonts.ts → src/lib/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export const fontRoboto = FontRoboto({
export const fontGilroy = localFont({
src: [
{
path: '../public/fonts/gilroy/Gilroy-Medium.ttf',
path: '../../public/fonts/gilroy/Gilroy-Medium.ttf',
weight: '500',
style: 'normal'
},
{
path: '../public/fonts/gilroy/Gilroy-SemiBold.ttf',
path: '../../public/fonts/gilroy/Gilroy-SemiBold.ttf',
weight: '600',
style: 'normal'
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 6 additions & 3 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ const { fontFamily } = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["app/**/*.{ts,tsx}", "components/**/*.{ts,tsx}"],
content: [
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
Expand All @@ -14,7 +17,7 @@ module.exports = {
},
extend: {
zIndex: {
'999': 999,
999: 999,
},
colors: {
border: "hsl(var(--border))",
Expand Down Expand Up @@ -76,4 +79,4 @@ module.exports = {
},
},
plugins: [require("tailwindcss-animate")],
}
};
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
"@/*": ["./src/*"]
},
"plugins": [
{
Expand Down

0 comments on commit 54e8d3b

Please sign in to comment.