Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update some various styles #2974

Merged
merged 4 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ module.exports = {
proseWrap: 'always',
trailingComma: 'none',
singleQuote: true,
plugins: ['prettier-plugin-svelte'],
overrides: [{ files: '*.svelte', options: { parser: 'svelte' } }]
plugins: ['prettier-plugin-astro', 'prettier-plugin-svelte'],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro'
}
},
{ files: '*.svelte', options: { parser: 'svelte' } }
]
};
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 18.19.0
pnpm 9.9.0
pnpm 9.11.0
20 changes: 10 additions & 10 deletions landing/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import MainPage from '@layouts/MainPage.astro';

<MainPage isHome={true}>
<div
class='font-heading mt-8 text-6xl text-center uppercase w-full'
slot='hero-heading'
class="font-heading mt-8 text-6xl text-center uppercase w-full"
slot="hero-heading"
>
<img
class='inline p-4 w-full lg:mt-4 lg:p-0 lg:w-auto'
src='/img/demo.svg'
alt='Demo'
class="inline p-4 w-full lg:mt-4 lg:p-0 lg:w-auto"
src="/img/demo.svg"
alt="Demo"
/>
</div>

Expand All @@ -34,10 +34,10 @@ import MainPage from '@layouts/MainPage.astro';
</div>
</div>

<div class='hero-example mt-8'>
<h3 class='demo-heading font-heading text-2xl uppercase'>02. Example</h3>
<div class="hero-example mt-8">
<h3 class="demo-heading font-heading text-2xl uppercase">02. Example</h3>

<div class='hero-example-code text-left'>
<div class="hero-example-code text-left">
<Code
code={`
const tour = new Shepherd.Tour({
Expand Down Expand Up @@ -77,8 +77,8 @@ import MainPage from '@layouts/MainPage.astro';

tour.start();
`}
lang='js'
theme='nord'
lang="js"
theme="nord"
wrap
/>
</div>
Expand Down
32 changes: 16 additions & 16 deletions landing/src/pages/pricing.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';

<div class="my-20 flow-root">
<div
class="isolate -mt-16 grid grid-cols-3 gap-y-16 divide-y divide-gray-100 sm:mx-auto lg:-mx-8 lg:mt-0 lg:max-w-none lg:grid-cols-3 lg:divide-x lg:divide-y-0 xl:-mx-4"
class="isolate -mt-16 grid grid-cols-1 gap-y-16 divide-y divide-gray-100 sm:mx-auto lg:-mx-8 lg:mt-0 lg:max-w-none lg:grid-cols-3 lg:divide-x lg:divide-y-0 xl:-mx-4"
>
<div class="pt-16 lg:px-8 lg:pt-0 xl:px-14">
<h3 class="font-heading p-2 text-xl uppercase w-full">
<h3 class="font-heading text-xl uppercase w-full">
Business Plan
</h3>
<p class="mt-6 flex items-baseline gap-x-1">
Expand Down Expand Up @@ -71,7 +71,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -85,7 +85,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -99,7 +99,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -113,7 +113,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -128,7 +128,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</ul>
</div>
<div class="pt-16 lg:px-8 lg:pt-0 xl:px-14">
<h3 class="font-heading p-2 text-xl uppercase w-full">
<h3 class="font-heading text-xl uppercase w-full">
Enterprise Plan
</h3>
<p class="mt-6 flex items-baseline gap-x-1">
Expand Down Expand Up @@ -158,7 +158,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -172,7 +172,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -186,7 +186,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -200,7 +200,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -216,7 +216,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</div>

<div class="pt-16 lg:px-8 lg:pt-0 xl:px-14">
<h3 class="font-heading p-2 text-xl uppercase w-full">
<h3 class="font-heading text-xl uppercase w-full">
Shepherd Consulting
</h3>
<p class="mt-6 mb-4 flex items-baseline gap-x-1">
Expand Down Expand Up @@ -244,7 +244,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -258,7 +258,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -272,7 +272,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand All @@ -286,7 +286,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
</li>
<li class="flex gap-x-3">
<svg
class="h-6 w-5 flex-none text-indigo-600"
class="h-5 w-5 flex-none text-indigo-600"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"eslint-plugin-svelte": "^2.39.0",
"postcss": "^8.4.38",
"prettier": "3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.2",
"release-plan": "^0.9.0",
"replace": "^1.2.2",
Expand Down
43 changes: 38 additions & 5 deletions pnpm-lock.yaml

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