Skip to content

Commit 4e78314

Browse files
authored
feat: announce release (#276)
1 parent 424be23 commit 4e78314

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

packages/gatsby-theme-iterative/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dvcorg/gatsby-theme-iterative",
3-
"version": "0.3.18",
3+
"version": "0.3.19",
44
"description": "",
55
"main": "index.js",
66
"types": "src/typings.d.ts",

packages/gatsby-theme-iterative/src/components/LayoutHeader/Alert/content.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import Link from '../../Link'
2+
import { ReactComponent as GithubSVG } from '../../SocialIcon/github.svg'
23

34
export const AlertContent = () => (
45
<>
56
<span role="img" aria-label="rocket">
67
🚀
78
</span>{' '}
8-
Support our DVC Extension for VSCode on{' '}
9-
<Link href="https://www.producthunt.com/posts/dvc-extension-for-vs-code">
10-
Product Hunt
9+
DataChain Open-Source Release{' '}
10+
<Link href="https://github.com/iterative/datachain">
11+
Start us on <GithubSVG className="h-5 w-5 inline-block align-middle" />
1112
</Link>
1213
!
1314
</>

packages/gatsby-theme-iterative/src/components/Link/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const ResultLinkComponent: React.FC<ILinkProps> = ({
2323
rel,
2424
target,
2525
download = false,
26-
className = 'underline text-blue-600 hover:text-blue-800 visited:text-purple-600',
26+
className = 'no-underline text-blue-600 hover:text-blue-800 hover:underline',
2727
...restProps
2828
}) => {
2929
// Handle all situations where a basic `a` must be used over Gatsby Link

0 commit comments

Comments
 (0)