-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 link to Keystone Enterprise #9320
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
docs/components/Footer.tsx
Outdated
import Link from 'next/link' | ||
import { type HTMLAttributes } from 'react' | ||
import Link from 'next/link'; | ||
import { type HTMLAttributes } from 'react'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the formatting rule is not to use semi
8f2eb55
to
b88370d
Compare
b88370d
to
518b577
Compare
docs/components/Footer.tsx
Outdated
@@ -13,7 +12,7 @@ import { Emoji } from './primitives/Emoji' | |||
import { Type } from './primitives/Type' | |||
import { Socials } from './Socials' | |||
|
|||
function List (props: HTMLAttributes<HTMLElement>) { | |||
function List(props: HTMLAttributes<HTMLElement>) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
function List(props: HTMLAttributes<HTMLElement>) { | |
function List (props: HTMLAttributes<HTMLElement>) { |
docs/components/Footer.tsx
Outdated
@@ -33,7 +32,7 @@ function List (props: HTMLAttributes<HTMLElement>) { | |||
) | |||
} | |||
|
|||
export function Footer () { | |||
export function Footer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export function Footer() { | |
export function Footer () { |
- Remove unused code and imports in backend files - Add bootstrap v5.3.3 as a frontend dependency - Update package-lock.json and package.json - Update App.js to import bootstrap CSS - Improve loading state in App.js - Add error handling and fetch posts functionality in App.js - Add addNewPost functionality in App.js - Update UI in App.js to display user information and posts Related to keystonejs#9322, keystonejs#9320, keystonejs#9262
Updates the Main and Footer Navigation to include an external link to the new Keystone Enterprise page on the Thinkmill website.
Also updates the
LinkItem
to accept arel
andtarget
.