Skip to content

Commit

Permalink
refactor(website): change folder name marketing to website
Browse files Browse the repository at this point in the history
  • Loading branch information
pyadav committed Feb 9, 2024
1 parent 64d23b1 commit 0169299
Show file tree
Hide file tree
Showing 35 changed files with 56 additions and 26 deletions.
4 changes: 2 additions & 2 deletions frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This Turborepo includes the following packages/apps:
### Apps and Packages

- `console`: a [Next.js](https://nextjs.org/) app
- `marketing`: another [Next.js](https://nextjs.org/) app
- `@missingstudio/ui`: a stub React component library shared by both `console` and `domarketingcs` applications
- `website`: another [Next.js](https://nextjs.org/) app
- `@missingstudio/ui`: a stub React component library shared by both `console` and `website` applications
- `@missingstudio/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
- `@missingstudio/typescript-config`: `tsconfig.json`s used throughout the monorepo

Expand Down
2 changes: 1 addition & 1 deletion frontend/apps/console/config/marketing.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const marketingConfig = {
export const websiteConfig = {
navigations: [],
};
3 changes: 0 additions & 3 deletions frontend/apps/marketing/config/marketing.ts

This file was deleted.

19 changes: 0 additions & 19 deletions frontend/apps/marketing/tailwind.config.js

This file was deleted.

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.
3 changes: 3 additions & 0 deletions frontend/apps/website/config/marketing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const websiteConfig = {
navigations: [],
};
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 @@
{
"name": "marketing",
"name": "website",
"version": "1.0.0",
"private": true,
"scripts": {
Expand Down
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.
49 changes: 49 additions & 0 deletions frontend/apps/website/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"../../packages/ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
},
fontSize: {
xs: ['0.75rem', { lineHeight: '1.5' }],
sm: ['0.875rem', { lineHeight: '1.5715' }],
base: ['1rem', { lineHeight: '1.5', letterSpacing: '-0.017em' }],
lg: ['1.125rem', { lineHeight: '1.5', letterSpacing: '-0.017em' }],
xl: ['1.25rem', { lineHeight: '1.5', letterSpacing: '-0.017em' }],
'2xl': ['1.5rem', { lineHeight: '1.415', letterSpacing: '-0.017em' }],
'3xl': ['1.875rem', { lineHeight: '1.333', letterSpacing: '-0.017em' }],
'4xl': ['2.25rem', { lineHeight: '1.277', letterSpacing: '-0.017em' }],
'5xl': ['2.75rem', { lineHeight: '1.2', letterSpacing: '-0.017em' }],
'6xl': ['3.5rem', { lineHeight: '1', letterSpacing: '-0.017em' }],
'7xl': ['4.5rem', { lineHeight: '1', letterSpacing: '-0.017em' }],
},
letterSpacing: {
tighter: '-0.02em',
tight: '-0.01em',
normal: '0',
wide: '0.01em',
wider: '0.02em',
widest: '0.4em',
},
animation: {
'endless': 'endless 20s linear infinite',
},
keyframes: {
'endless': {
'0%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(-245px)' }
}
}
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
};
File renamed without changes.
Binary file modified frontend/bun.lockb
Binary file not shown.

0 comments on commit 0169299

Please sign in to comment.