Skip to content

Commit

Permalink
Merge pull request #76 from samvera/74-get-started-button
Browse files Browse the repository at this point in the history
Typo Software fix and Getting Started link fix
  • Loading branch information
heathergreerklein authored Jul 19, 2023
2 parents 4cb92e5 + d4449e8 commit ceb4b3c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/home/CommunityNewsEvents.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function CommunityNewsEvents({ items }) {
bundles.
</p>
<div className="flex justify-around pt-5">
<Link legacyBehavior href="/getting-started/getting-started">
<Link legacyBehavior href="/getting-started">
<a className="button">Getting started</a>
</Link>
</div>
Expand Down
11 changes: 7 additions & 4 deletions components/home/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,16 @@ export default function HomeHero() {

<div className="mt-10 sm:flex sm:justify-center lg:justify-start">
<div className="rounded-md shadow">
<Link legacyBehavior href="/getting-started/getting-started">
<a className="button">Get started</a>
<Link className="button" href="/getting-started">
Get started
</Link>
</div>
<div className="mt-3 rounded-md shadow sm:mt-0 sm:ml-3">
<Link legacyBehavior href="/what-is-samvera/applications-demos">
<a className="button-inverted">Learn more</a>
<Link
className="button-inverted"
href="/what-is-samvera/applications-demos"
>
Learn more
</Link>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/layout/HeaderNew.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const newsNavigation = [

const softwareSolutionsNavigation = [
{
label: "Sofware Solutions",
label: "Software Solutions",
slug: "",
items: [
{
Expand Down
2 changes: 1 addition & 1 deletion components/layout/OuterWrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";
export default function OuterWrapper({ children }) {
return (
<div className="border-t-2 bg-gradient-to-br from-transparent to-samBlueLight border-samDarkRed">
<div className="container mx-auto">{children}</div>
<div className="container mx-auto max-w-7xl">{children}</div>
</div>
);
}

0 comments on commit ceb4b3c

Please sign in to comment.