Skip to content

Commit

Permalink
WB-283 - Capitalise content across the site (apache#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
gio-startree authored Apr 17, 2024
1 parent f93089d commit 75f2b0e
Show file tree
Hide file tree
Showing 15 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function BlogPage() {
<section aria-labelledby="blog-section-title" className="mt-8 pb-32">
<header className="p-8 text-center md:p-0 md:pt-16">
<h1 className="mb-6 text-3xl font-bold md:pb-10 md:text-5xl">
Apache Pinot&trade; blog
Apache Pinot&trade; Blog
</h1>
</header>
<div className="grid grid-cols-1 gap-6 md:grid-cols-3 lg:px-24">
Expand Down
2 changes: 1 addition & 1 deletion app/download/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Download = () => {
<section>
<header className="p-8 text-center md:p-0 md:pt-16">
<h1 className="mb-6 text-3xl font-bold md:text-5xl">
Apache Pinot&trade; download
Apache Pinot&trade; Download
</h1>
<p className="text-lg md:mb-12">
Be sure to verify your downloads by these{' '}
Expand Down
8 changes: 4 additions & 4 deletions app/powered-by/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ const PoweredBy = () => {
<section>
<header className="p-8 pb-6 text-center md:p-0 md:pt-16">
<h1 className="mb-6 text-3xl font-bold md:pb-10 md:text-5xl">
powered by Apache Pinot&trade;
Powered by Apache Pinot&trade;
</h1>
<h3 className="pt-4 text-2xl font-semibold md:pb-10">company stories</h3>
<h3 className="pt-4 text-2xl font-semibold md:pb-10">Company Stories</h3>
</header>
<CompanyStoriesGrid />
<h3 className="p-4 pt-14 text-center text-2xl font-semibold md:pb-10">
companies using Apache Pinot
Companies Using Apache Pinot
</h3>
<CompanyTable companies={companiesUsingPinot} />
<footer className="mx-5 my-14 bg-green-50 py-12 text-center md:mx-28 md:my-24">
Expand All @@ -32,7 +32,7 @@ const PoweredBy = () => {
</h3>
<Button variant="default" size="lg" className="bg-vine-100 px-6 py-2 text-base">
<Link href={siteMetadata.shareStory.link} target="_blank">
share now
Share Now
</Link>
</Button>
</footer>
Expand Down
4 changes: 2 additions & 2 deletions components/BlogSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const BlogSection: React.FC<BlogSectionProps> = ({ posts }) => {
id="blog-section-title"
className="m-12 text-center text-[2rem] font-bold leading-10 lg:mt-24"
>
pinot blog
Pinot Blog
</h4>
<div className="grid grid-cols-1 gap-[1.875rem] md:grid-cols-3 lg:px-24">
{posts.slice(0, 3).map((post) => {
Expand All @@ -34,7 +34,7 @@ const BlogSection: React.FC<BlogSectionProps> = ({ posts }) => {
className="text-base font-semibold leading-tight text-vine-100"
>
<Link href={'/blog'}>
browse all
Browse All
<ArrowRight className="mr-2 h-5 w-5" />
</Link>
</Button>
Expand Down
2 changes: 1 addition & 1 deletion components/CommunitySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CommunityBox: React.FC<CommunityBoxProps> = ({ name, icon, link, isWide =
const CommunitySection: React.FC = () => {
return (
<section className="px-6 py-14 md:mx-auto md:max-w-screen-outerLiveArea md:px-[13.5rem] md:py-[6.5rem]">
<h3 className="pb-8 text-center text-[2rem] font-bold md:pb-14">join our community</h3>
<h3 className="pb-8 text-center text-[2rem] font-bold md:pb-14">Join our Community</h3>
<div className="flex flex-wrap justify-center gap-x-[1.375rem] gap-y-6 lg:gap-[6.75rem]">
{siteMetadata.communityLinks.map((community: CommunityLink) => (
<CommunityBox
Expand Down
2 changes: 1 addition & 1 deletion components/CompanyCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const CompanyStories: React.FC = () => {
className="justify-center p-0 pt-8 text-base font-semibold leading-tight text-vine-100 md:pt-12"
>
<Link href={'/powered-by'}>
see company stories
See Company Stories
<ArrowRight className="mr-2 h-5 w-5" />
</Link>
</Button>
Expand Down
2 changes: 1 addition & 1 deletion components/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Features: React.FC = () => {
<section className="flex px-6 py-14 md:mx-auto md:max-w-screen-outerLiveArea md:px-[6.75rem] md:py-[6.5rem]">
<div className="mx-auto max-w-7xl">
<h3 className="pb-8 text-center text-[1.75rem] font-semibold md:pb-16 md:text-[2rem]">
features
Features
</h3>
<div className="grid grid-cols-1 gap-y-10 sm:grid-cols-2 md:gap-x-[5.625rem] md:gap-y-24 lg:grid-cols-3">
{featuresData.map((feature, index) => (
Expand Down
2 changes: 1 addition & 1 deletion components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Header = () => {
</Button>
<Button variant="default" size="lg" className="bg-vine-100 px-6 py-2 text-base">
<Link href={siteMetadata.cta.getStarted} target="_blank">
get started
Get Started
</Link>
</Button>
</div>
Expand Down
6 changes: 3 additions & 3 deletions components/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const HeroSection = () => {
<section className="md:mx-auto md:max-w-screen-outerLiveArea">
<div className="p-8 text-center md:pb-12 md:pt-24">
<h1 className="mb-4 text-4xl font-bold leading-[45px] md:text-[3.5rem] md:leading-[70px]">
Insights, unlocked in real time.
Insights, Unlocked in Real Time.
</h1>
<p className="m-auto mb-8 max-w-4xl text-lg md:leading-[28.80px]">
Apache Pinot&trade;: The real-time analytics open source platform for
Expand All @@ -25,7 +25,7 @@ const HeroSection = () => {
className="rounded-lg bg-vine-100 px-8 py-3 text-xl"
>
<Link href={siteMetadata.cta.getStarted} target="_blank">
get started
Get Started
</Link>
</Button>
<Button
Expand All @@ -34,7 +34,7 @@ const HeroSection = () => {
className="rounded-lg border-2 border-vine-100 px-8 py-3 text-xl text-vine-100 hover:border-vine-120 hover:text-vine-120"
>
<Link href={siteMetadata.cta.slackInvite} target="_blank">
join slack
Join Slack
</Link>
</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/MobileNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const MobileNav = () => {
className="bg-vine-100 px-6 py-2 text-base"
>
<Link href={siteMetadata.cta.getStarted} target="_blank">
get started
Get Started
</Link>
</Button>
<Button
Expand Down
2 changes: 1 addition & 1 deletion components/TextCodeSplitSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const TextCodeSplitSection: React.FC<TextCodeSplitSectionProps> = ({ title }) =>
className="mr-2 rounded-lg bg-vine-100 px-8 py-3 text-xl"
>
<Link href={siteMetadata.cta.getStarted} target="_blank">
get started
Get Started
</Link>
</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/TextVideoSplitSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const TextVideoSplitSection: React.FC<TextVideoSplitSectionProps> = ({ videoUrl,
className="my-6 mr-2 justify-start p-0 text-lg font-semibold leading-tight text-vine-100"
>
<Link href={siteMetadata.cta.learnMore} target="_blank">
learn more
Learn More
<ArrowRight className="mr-2 h-5 w-5" />
</Link>
</Button>
Expand Down
18 changes: 9 additions & 9 deletions data/featuresData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ interface Feature {
const featuresData: Feature[] = [
{
imageSrc: '/static/images/features/fast_queries.svg',
title: 'fast queries',
title: 'Fast Queries',
description: [
'Filter and aggregate petabyte data sets with P90 latencies in the tens of milliseconds—fast enough to return live results interactively in the UI.'
]
},
{
imageSrc: '/static/images/features/high_concurrency.svg',
title: 'high concurrency',
title: 'High Concurrency',
description: [
'With user-facing applications querying Pinot directly, it can serve hundreds of thousands of concurrent queries per second.'
]
},
{
imageSrc: '/static/images/features/batch_ingest.svg',
title: 'batch and streaming ingest',
title: 'Batch and Streaming Ingest',
description: [
'Ingest from ',
{ text: 'Apache Kafka', url: 'https://kafka.apache.org/' },
Expand All @@ -35,19 +35,19 @@ const featuresData: Feature[] = [
},
{
imageSrc: '/static/images/features/upsert.svg',
title: 'upserts',
title: 'Upserts',
description: [
'Ingest the same record many times, but see only the latest value at query time. Upserts are built-in and production-tested since version 0.6.'
]
},
{
imageSrc: '/static/images/features/versatile_joins.svg',
title: 'versatile joins',
title: 'Versatile Joins',
description: ['Perform arbitrary fact/dimension and fact/fact joins on petabyte data sets.']
},
{
imageSrc: '/static/images/features/options.svg',
title: 'rich indexing options',
title: 'Rich Indexing Options',
description: [
'Choose from pluggable indexes including ',
{
Expand Down Expand Up @@ -88,21 +88,21 @@ const featuresData: Feature[] = [
},
{
imageSrc: '/static/images/features/built_scale.svg',
title: 'built for scale',
title: 'Built for Scale',
description: [
'Pinot is horizontally scalable and fault-tolerant, adaptable to workloads across the storage and throughput spectrum.'
]
},
{
imageSrc: '/static/images/features/sql_query.svg',
title: 'SQL query interface',
title: 'SQL Query Interface',
description: [
'The highly standard SQL query interface is accessible through a built-in query editor and a REST API.'
]
},
{
imageSrc: '/static/images/features/multitenancy.svg',
title: 'built-in multitenancy',
title: 'Built-in Multitenancy',
description: [
'Manage and secure data in isolated logical namespaces for cloud-friendly resource management.'
]
Expand Down
8 changes: 4 additions & 4 deletions data/headerNavLinks.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const headerNavLinks = [
{ href: '/', title: 'Home' },
{ href: 'https://docs.pinot.apache.org', title: 'docs' },
{ href: '/download', title: 'download' },
{ href: '/powered-by', title: 'powered by' },
{ href: '/blog', title: 'blog' }
{ href: 'https://docs.pinot.apache.org', title: 'Docs' },
{ href: '/download', title: 'Download' },
{ href: '/powered-by', title: 'Powered by' },
{ href: '/blog', title: 'Blog' }
];

export default headerNavLinks;
2 changes: 1 addition & 1 deletion data/siteMetadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const siteMetadata = {
'https://apache-pinot.slack.com/join/shared_invite/zt-5z7pav2f-yYtjZdVA~EDmrGkho87Vzw#/shared-invite/email'
},
codeSection: {
header: 'Start your real-time analytics journey.'
header: 'Start Your Real-Time Analytics Journey.'
},
analytics: {
// To use an analytics provider, add it to the
Expand Down

0 comments on commit 75f2b0e

Please sign in to comment.