Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
function withOpacityValue(variable) {
|
|
|
|
return ({ opacityValue }) => {
|
|
|
|
if (opacityValue === undefined) {
|
|
|
|
return `rgb(var(${variable}))`;
|
|
|
|
}
|
|
|
|
return `rgb(var(${variable}) / ${opacityValue})`;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
module.exports = {
|
2022-09-19 03:01:05 +03:00
|
|
|
corePlugins: {
|
|
|
|
preflight: false,
|
|
|
|
},
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
content: [
|
2022-07-21 22:17:12 +03:00
|
|
|
"./src/pages/**/*.tsx",
|
|
|
|
"./src/pages/**/*.ts",
|
|
|
|
"./src/pages/**/*.js",
|
2022-09-19 03:01:05 +03:00
|
|
|
"./src/components/**/*.js",
|
|
|
|
"./src/components/**/*.tsx",
|
|
|
|
"./src/components/**/*.ts",
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
],
|
|
|
|
theme: {
|
2022-06-21 00:54:53 +03:00
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
},
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
extend: {
|
2022-07-21 22:17:12 +03:00
|
|
|
fontFamily: {
|
|
|
|
londrina: ["Londrina Solid"],
|
|
|
|
bahnschrift: ["Bahnschrift"],
|
|
|
|
},
|
2022-06-21 00:54:53 +03:00
|
|
|
spacing: {
|
2022-09-19 03:01:05 +03:00
|
|
|
"big-screen": "1920px",
|
2022-06-21 00:54:53 +03:00
|
|
|
},
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
colors: {
|
2022-07-21 22:17:12 +03:00
|
|
|
button: withOpacityValue("--color-button"),
|
|
|
|
point: withOpacityValue("--color-point"),
|
|
|
|
bodySecondary: withOpacityValue("--color-bodySecondary"),
|
|
|
|
bodyPrimary: withOpacityValue("--color-bodyPrimary"),
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
primary: withOpacityValue("--color-primary"),
|
|
|
|
secondary: withOpacityValue("--color-secondary"),
|
|
|
|
tertiary: withOpacityValue("--color-tertiary"),
|
2022-07-21 22:17:12 +03:00
|
|
|
navbar: withOpacityValue("--color-navbar"),
|
|
|
|
tool: withOpacityValue("--color-tool"),
|
Added testimonials, tweets, tools, and a table to the landing page. (#256)
* Added testimonials, tweets, tools, and a table to the landing page.
* Delete package-lock.json
deleting since this file is automatically generated.
* Delete yarn.lock
* Update Features.js
getting rid of an unnecessary import statement
* Update Footer.js
getting rid of an unnecessary import statement
* Update Footer.js
* Update Header.js
getting rid of an unnecessary import statement
* Update SideBySide.js
getting rid of an unnecessary import statement
* Update Table.js
getting rid of an unnecessary import statement
* Update Testimonials.js
getting rid of an unnecessary import statement
* Update Tools.js
getting rid of an unnecessary import statement
* Update Tweet.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
getting rid of an unnecessary import statement
* Update TwoColumns.js
* Delete package-lock.json
* Update package.json
* style, custom CSS color, restructuring data
* new data structure for table, writing a unit test
* getting rid of yarn.lock file
* changing the script for running docs-beta
* adding yarn.lock file back
* tests doesn't pass, but it runs!
* moving to ts
* deleting unnecessary dependencies
* deleting unnecessary dependencies within docs
* yarn file matches original docs
Co-authored-by: Bilge Kocak <t-bilgekocak@microsoft.com>
Co-authored-by: Ken Chau <kchau@microsoft.com>
2022-06-06 21:00:44 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|