Skip to content

Commit 8ea9055

Browse files
committed
Add better social images and data
1 parent c31a49f commit 8ea9055

File tree

10 files changed

+60
-31
lines changed

10 files changed

+60
-31
lines changed

website/public/lexington.png

-1.38 MB
Binary file not shown.
-147 KB
Binary file not shown.
156 KB
Loading
156 KB
Loading
-147 KB
Binary file not shown.

website/src/components/landing/SectionOne.astro

+17
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,23 @@
3838
</p>
3939
</div><div class="mt-4 text-gray-500 text-sm">...</div>
4040
</div>
41+
<div>
42+
<div>
43+
<div
44+
class="items-center justify-center text-accent-500 bg-gray-100 rounded-xl flex h-10 w-10 lg:mx-auto"
45+
>
46+
<ion-icon
47+
aria-label="scan outline"
48+
class="hydrated md h-4 w-4"
49+
name="cloud-offline-outline"
50+
role="img"></ion-icon>
51+
</div><p
52+
class="mt-4 text-lg font-semibold leading-6 text-black font-display tracking-tight"
53+
>
54+
Offline first
55+
</p>
56+
</div><div class="mt-4 text-gray-500 text-sm">...</div>
57+
</div>
4158
<div>
4259
<div>
4360
<div

website/src/pages/faq.astro

+10-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Footer from "../components/global/Footer.astro";
66
import { AstroSeo } from "@astrolib/seo";
77
---
88

9-
<!---
9+
<!--
1010
Use AstroSeo in all the pages you want different Seo than the index page
1111
-->
1212
<AstroSeo
@@ -19,24 +19,29 @@ Use AstroSeo in all the pages you want different Seo than the index page
1919
description: "Open Graph Description",
2020
images: [
2121
{
22-
url: "http://usetrak.com/opengraph/social-og.jpg",
22+
url: "http://usetrak.com/opengraph/social-og.jpeg",
2323
width: 1200,
2424
height: 630,
2525
alt: "Social open graph",
2626
type: "image/jpeg",
2727
},
2828
{
29-
url: "http://usetrak.com/opengraph/twitter-og.jpg",
29+
url: "http://usetrak.com/opengraph/twitter-og.jpeg",
3030
width: 4096,
3131
height: 4096,
3232
alt: "Twitter open graph",
3333
type: "image/jpeg",
3434
},
35-
{ url: "http://usetrak.com/opengraph/social-og.jpg" },
36-
{ url: "http://usetrak.com/opengraph/twitter-og.jpg" },
35+
{ url: "http://usetrak.com/opengraph/social-og.jpeg" },
36+
{ url: "http://usetrak.com/opengraph/twitter-og.jpeg" },
3737
],
3838
site_name: "Trak",
3939
}}
40+
twitter={{
41+
handle: "@usetrakcom",
42+
site: "@site",
43+
cardType: "summary_large_image",
44+
}}
4045
/>
4146
<BaseLayout>
4247
<Navigation />

website/src/pages/index.astro

+13-16
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ import Navigation from "../components/global/Navigation.astro";
44
55
import Hero from "../components/landing/Hero.astro";
66
import SectionOne from "../components/landing/SectionOne.astro";
7-
import SectionTwo from "../components/landing/SectionTwo.astro";
7+
// import SectionTwo from "../components/landing/SectionTwo.astro";
88
import Testimonial from "../components/global/Testimonial.astro";
9-
import Pricing from "../components/landing/Pricing.astro";
9+
// import Pricing from "../components/landing/Pricing.astro";
1010
import Cta from "../components/global/Cta.astro";
1111
import Footer from "../components/global/Footer.astro";
1212
import { AstroSeo } from "@astrolib/seo";
1313
---
1414

15-
<!---
15+
<!--
1616
Use AstroSeo in all the pages you want different Seo than the index page
1717
-->
1818
<AstroSeo
@@ -22,36 +22,33 @@ Use AstroSeo in all the pages you want different Seo than the index page
2222
openGraph={{
2323
url: "http://usetrak.com",
2424
title: "Trak",
25-
description:
26-
"Keep a record of the time you dedicate to your projects",
25+
description: "Keep a record of the time you dedicate to your projects",
2726
images: [
2827
{
29-
url: "http://usetrak.com/opengraph/social-og.jpg",
28+
url: "http://usetrak.com/opengraph/social-og.jpeg",
3029
width: 1200,
3130
height: 630,
3231
alt: "Social open graph",
3332
type: "image/jpeg",
3433
},
3534
{
36-
url: "http://usetrak.com/opengraph/twitter-og.jpg",
35+
url: "http://usetrak.com/opengraph/twitter-og.jpeg",
3736
width: 4096,
3837
height: 4096,
3938
alt: "Twitter open graph",
4039
type: "image/jpeg",
4140
},
42-
{ url: "http://usetrak.com/opengraph/social-og.jpg" },
43-
{ url: "http://usetrak.com/opengraph/twitter-og.jpg" },
41+
{ url: "http://usetrak.com/opengraph/social-og.jpeg" },
42+
{ url: "http://usetrak.com/opengraph/twitter-og.jpeg" },
4443
],
4544
site_name: "Trak",
4645
}}
46+
twitter={{
47+
handle: "@usetrakcom",
48+
site: "@site",
49+
cardType: "summary_large_image",
50+
}}
4751
/>
48-
{
49-
/* twitter={{
50-
handle: "@trak",
51-
site: "@site",
52-
cardType: "summary_large_image",
53-
}} */
54-
}
5552
<BaseLayout>
5653
<Navigation />
5754
<Hero />

website/src/pages/privacy.astro

+10-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Footer from "../components/global/Footer.astro";
77
import { AstroSeo } from "@astrolib/seo";
88
---
99

10-
<!---
10+
<!--
1111
Use AstroSeo in all the pages you want different Seo than the index page
1212
-->
1313
<AstroSeo
@@ -20,24 +20,29 @@ Use AstroSeo in all the pages you want different Seo than the index page
2020
description: "Open Graph Description",
2121
images: [
2222
{
23-
url: "http://usetrak.com/opengraph/social-og.jpg",
23+
url: "http://usetrak.com/opengraph/social-og.jpeg",
2424
width: 1200,
2525
height: 630,
2626
alt: "Social open graph",
2727
type: "image/jpeg",
2828
},
2929
{
30-
url: "http://usetrak.com/opengraph/twitter-og.jpg",
30+
url: "http://usetrak.com/opengraph/twitter-og.jpeg",
3131
width: 4096,
3232
height: 4096,
3333
alt: "Twitter open graph",
3434
type: "image/jpeg",
3535
},
36-
{ url: "http://usetrak.com/opengraph/social-og.jpg" },
37-
{ url: "http://usetrak.com/opengraph/twitter-og.jpg" },
36+
{ url: "http://usetrak.com/opengraph/social-og.jpeg" },
37+
{ url: "http://usetrak.com/opengraph/twitter-og.jpeg" },
3838
],
3939
site_name: "Trak",
4040
}}
41+
twitter={{
42+
handle: "@usetrakcom",
43+
site: "@site",
44+
cardType: "summary_large_image",
45+
}}
4146
/>
4247
<BaseLayout>
4348
<Navigation />

website/src/pages/terms.astro

+10-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Footer from "../components/global/Footer.astro";
66
import { AstroSeo } from "@astrolib/seo";
77
---
88

9-
<!---
9+
<!--
1010
Use AstroSeo in all the pages you want different Seo than the index page
1111
-->
1212
<AstroSeo
@@ -19,24 +19,29 @@ Use AstroSeo in all the pages you want different Seo than the index page
1919
description: "Open Graph Description",
2020
images: [
2121
{
22-
url: "http://usetrak.com/opengraph/social-og.jpg",
22+
url: "http://usetrak.com/opengraph/social-og.jpeg",
2323
width: 1200,
2424
height: 630,
2525
alt: "Social open graph",
2626
type: "image/jpeg",
2727
},
2828
{
29-
url: "http://usetrak.com/opengraph/twitter-og.jpg",
29+
url: "http://usetrak.com/opengraph/twitter-og.jpeg",
3030
width: 4096,
3131
height: 4096,
3232
alt: "Twitter open graph",
3333
type: "image/jpeg",
3434
},
35-
{ url: "http://usetrak.com/opengraph/social-og.jpg" },
36-
{ url: "http://usetrak.com/opengraph/twitter-og.jpg" },
35+
{ url: "http://usetrak.com/opengraph/social-og.jpeg" },
36+
{ url: "http://usetrak.com/opengraph/twitter-og.jpeg" },
3737
],
3838
site_name: "Trak",
3939
}}
40+
twitter={{
41+
handle: "@usetrakcom",
42+
site: "@site",
43+
cardType: "summary_large_image",
44+
}}
4045
/>
4146
<BaseLayout>
4247
<Navigation />

0 commit comments

Comments
 (0)